2025-03-24, 02:26 PM
(This post was last modified: 2025-03-24, 02:28 PM by Arson3532. Edited 3 times in total.)
Sure:
Code:
jellyfin:
image: jellyfin/jellyfin:10.10.6
container_name: jellyfin
group_add:
- "video"
ports:
- "8096:8096"
restart: 'always'
environment:
- JELLYFIN_PublishedServerUrl=https://xxx
- TZ=...
volumes:
- /mnt/user/appdata/arr/jellyfin/config:/config:rw
- /mnt/user/appdata/arr/jellyfin/cache:/cache:rw
- /mnt/user/ShareMedia:/media:rw # Where all the videos and series are. I have more volumes for the rest of the places
devices:
- /dev/dri
networks:
- media-network
healthcheck:
test: ["CMD", "curl", "-fsS", "http://localhost:8096/health"]
interval: 1m
timeout: 10s
retries: 3
start_period: 10m
labels:
autoheal-app: true