mirror of
https://github.com/JG2401/HetznerDokployLab.git
synced 2026-08-29 04:30:10 +00:00
23 lines
463 B
YAML
23 lines
463 B
YAML
version: "3.8"
|
|
services:
|
|
jellyfin:
|
|
image: jellyfin/jellyfin:10
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
cpus: "2.0"
|
|
memory: 2G
|
|
volumes:
|
|
- config:/config
|
|
- cache:/cache
|
|
- /opt/media/seedbox/media:/media:ro
|
|
restart: "unless-stopped"
|
|
environment:
|
|
- JELLYFIN_PublishedServerUrl=https://${JELLYFIN_HOST}
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
volumes:
|
|
config:
|
|
cache:
|
|
media:
|