27 lines
No EOL
700 B
YAML
27 lines
No EOL
700 B
YAML
x-logging: &default-logging
|
|
driver: "json-file"
|
|
options:
|
|
max-size: "10m"
|
|
max-file: "3"
|
|
|
|
services:
|
|
jellyfin:
|
|
image: jellyfin/jellyfin:latest
|
|
container_name: jellyfin
|
|
restart: unless-stopped
|
|
environment:
|
|
TZ: Europe/Zurich
|
|
volumes:
|
|
- /srv/media-int01/data/jellyfin/config:/config
|
|
- /srv/media-int01/data/jellyfin/cache:/cache
|
|
- /mnt/jellyfin-data/uploads:/data/uploads
|
|
- /mnt/jellyfin-media/xCinema:/data/xCinema:ro
|
|
ports:
|
|
- "8096:8096"
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:8096/health"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 20s
|
|
logging: *default-logging |