Initial commit

This commit is contained in:
2026-05-30 22:48:53 -03:00
commit eacdd18165
35 changed files with 828 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
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