You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
620 B
26 lines
620 B
2 years ago
|
version: "3.7"
|
||
|
|
||
|
services:
|
||
|
app_proxy:
|
||
|
environment:
|
||
|
APP_HOST: $APP_JELLYFIN_IP
|
||
|
APP_PORT: 8096
|
||
|
PROXY_AUTH_ADD: "false"
|
||
|
|
||
|
server:
|
||
|
image: linuxserver/jellyfin:10.8.4@sha256:f5f4e11e7d56eaad47a3bd26a7f44b65fc46ae4d2c4b8b039402dfcae791a665
|
||
|
restart: on-failure
|
||
|
hostname: "${DEVICE_HOSTNAME}"
|
||
|
environment:
|
||
|
- PUID=1000
|
||
|
- PGID=1000
|
||
|
volumes:
|
||
|
- ${APP_DATA_DIR}/data/config:/config
|
||
|
- ${UMBREL_ROOT}/data/storage/downloads:/downloads
|
||
|
ports:
|
||
|
# Service auto-discovery
|
||
|
- 7359:7359/udp
|
||
|
networks:
|
||
|
default:
|
||
|
ipv4_address: $APP_JELLYFIN_IP
|