16 lines
433 B
YAML
16 lines
433 B
YAML
services:
|
|
jellyfin:
|
|
image: jellyfin/jellyfin:10.10.7
|
|
container_name: jellyfin
|
|
user: ${UID}:${GID}
|
|
environment:
|
|
- JELLYFIN_PublishedServerUrl=${JELLYFIN_PublishedServerUrl}
|
|
volumes:
|
|
- ${APPDATA_PATH}/jellyfin/config:/config
|
|
- ${APPDATA_PATH}/jellyfin/cache:/cache
|
|
- ${MEDIA_PATH}:/media
|
|
- /etc/localtime:/etc/localtime:ro
|
|
ports:
|
|
- ${PORT}:8096
|
|
restart: unless-stopped
|