16 lines
319 B
YAML
16 lines
319 B
YAML
|
|
services:
|
|
jellyfin:
|
|
image: linuxserver/jellyfin
|
|
container_name: jellyfin
|
|
environment:
|
|
- PUID=${PUID}
|
|
- PGID=${PGID}
|
|
- TZ=Canada/Eastern
|
|
volumes:
|
|
- ${CONFIG_PATH}/jellyfin:/config
|
|
- ${DATA_PATH}/media/:/data/media
|
|
ports:
|
|
- 8096:8096
|
|
restart: unless-stopped
|