This commit is contained in:
2026-05-20 13:47:17 +02:00
parent be5bff6e14
commit 555d37dfaa
20 changed files with 672 additions and 17 deletions
+30
View File
@@ -0,0 +1,30 @@
version: "2.4"
services:
jellyfin:
container_name: jellyfin
network_mode: "host"
image: jellyfin/jellyfin
pids_limit: 2048
environment:
- PUID=1000
- PGID=1000
- JELLYFIN_PublishedServerUrl=http://10.10.10.21:8096
- TZ=Europe/Berlin
- ASPNETCORE_FORWARDEDHEADERS_ENABLED=true
volumes:
- media_data:/data/media:rw
- jellyfin_data:/config:rw
- jellyfin_cache:/cache:rw
dns:
- 10.10.10.1
volumes:
jellyfin_data:
external: true
jellyfin_cache:
external: true
media_data:
external: true