Delta-Load

This commit is contained in:
2025-12-22 13:22:11 +01:00
parent edcea04b92
commit 307c8f710b
31 changed files with 680 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
services:
jellyfin:
image: jellyfin/jellyfin
container_name: jellyfin
user: 1000:1000
network_mode: host
deploy:
resources:
limits:
memory: 2G
volumes:
- /opt/jellyfin/config:/config
- /opt/jellyfin/cache:/cache
- type: bind
source: /media/Musik
target: /Musik
read_only: false
- type: bind
source: /media/Filme
target: /Filme
read_only: false
- type: bind
source: /media/Serien
target: /Serien
read_only: false
restart: no #unless-stopped
# Optional - alternative address used for autodiscovery
environment:
- JELLYFIN_PublishedServerUrl=https://jellyfin-app.hanold.online
# - ENABLE_METRICS=true
# Optional - may be necessary for docker healthcheck to pass if running in host network mode
extra_hosts:
- host.docker.internal:host-gateway
networks: {}