commit 5046d2afd1b395817d538f38528da7d038028aaa Author: Beda Schmid Date: Wed Aug 5 16:07:53 2026 +0000 Initial commit diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..079ed73 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,25 @@ +services: + jellyfin: + image: jellyfin/jellyfin:latest + container_name: jellyfin + shm_size: "2gb" + restart: unless-stopped +# ports: + # - "8096:8096" + # - "8920:8920" + volumes: + - /srv/appdata/jellyfin/config:/config + - /srv/appdata/jellyfin/cache:/cache + - /data/Data1/jellyfin:/media + devices: + - /dev/dri:/dev/dri + group_add: + - "44" + - "993" + networks: + npm_proxy: + ipv4_address: 192.168.97.10 + +networks: + npm_proxy: + external: true