Files
dragonfruit-resources/services/jellyfin/coolify.docker-compose.yml
2026-05-30 22:48:53 -03:00

24 lines
542 B
YAML

services:
jellyfin:
image: 'lscr.io/linuxserver/jellyfin:latest'
environment:
- SERVICE_URL_JELLYFIN_8096
- PUID=1000
- PGID=1000
- 'TZ=${TZ:-Brazil/Sao_Paulo}'
- JELLYFIN_PublishedServerUrl=$SERVICE_URL_JELLYFIN
volumes:
- 'jellyfin-config:/config'
- type: bind
source: /shared/jellyfin/data
target: /data
healthcheck:
test:
- CMD
- curl
- '-f'
- 'http://127.0.0.1:8096'
interval: 2s
timeout: 10s
retries: 15