Files
docker-compose/.archived/jellyfin/docker-compose.yml
T

18 lines
436 B
YAML
Raw Normal View History

2025-06-22 21:40:02 +05:30
services:
jellyfin:
image: ghcr.io/jellyfin/jellyfin:10.10.7
2025-06-22 21:40:02 +05:30
container_name: jellyfin
user: ${UID}:${GID}
2025-06-22 22:54:28 +05:30
deploy:
resources:
limits:
memory: ${MEMORY_LIMIT}
2025-06-22 21:40:02 +05:30
volumes:
- ${APPDATA_PATH}/jellyfin/config:/config
- ${APPDATA_PATH}/jellyfin/cache:/cache
- ${MEDIA_PATH}:/media
- /etc/localtime:/etc/localtime:ro
2025-06-22 21:42:19 +05:30
ports:
- ${PORT}:8096
2025-06-22 21:40:02 +05:30
restart: unless-stopped