- Fix SabNZBD hostname whitelist issues - Add transmission settings to GUI - Fix some qbittorrent connection issues - Remove Torrent Ingress - Fix some device mounting gui issues - Change repo url references - Cleaning up the homepage - Drop Deluge (App is not safe due to being mostly abandoned) - Move Emby to own Non-Root container - Create new trains and move charts->stable - Add Plex app - update emby and plex intel hardware support - Implement new parallel CI for Apps - Move PGID, PUID, TZ and UMASK settings to "Container Image" configuration - Stop running some workflows on staging - Add branch security trigger to matrix workflows Co-authored-by: Troy Prelog <35702532+tprelog@users.noreply.github.com>
20 lines
505 B
Bash
Executable File
20 lines
505 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
#shellcheck disable=SC1091
|
|
source "/shim/umask.sh"
|
|
source "/shim/vpn.sh"
|
|
|
|
export LD_LIBRARY_PATH="${APP_DIR}"
|
|
export FONTCONFIG_PATH="${APP_DIR}"/etc/fonts
|
|
if [ -d "/lib/x86_64-linux-gnu" ]; then
|
|
export LIBVA_DRIVERS_PATH=/usr/lib/x86_64-linux-gnu/dri:"${APP_DIR}"/dri
|
|
fi
|
|
export SSL_CERT_FILE="${APP_DIR}"/etc/ssl/certs/ca-certificates.crt
|
|
|
|
exec /app/EmbyServer \
|
|
-programdata /config \
|
|
-ffdetect /app/ffdetect \
|
|
-ffmpeg /app/ffmpeg \
|
|
-ffprobe /app/ffprobe \
|
|
-restartexitcode 3
|