Files
docker-compose/jellyfin/docker-compose.yml
2025-07-02 17:41:16 +05:30

18 lines
428 B
YAML

services:
jellyfin:
image: jellyfin/jellyfin:10.10.7
container_name: jellyfin
user: ${UID}:${GID}
deploy:
resources:
limits:
memory: ${MEMORY_LIMIT}
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