fix first batch of _dev stacks: authentik, directus, duplicati, filebrowser, firefly, headscale, homepage, invoiceninja, jellyfin, lubelogger

This commit is contained in:
openhands
2026-07-16 04:56:21 +00:00
parent 1b77ca5844
commit 6eedbf4a0d
20 changed files with 327 additions and 266 deletions
+20 -12
View File
@@ -1,16 +1,24 @@
services:
jellyfin:
image: ${JELLYFIN_IMAGE:-jellyfin/jellyfin:latest}
restart: unless-stopped
environment:
- JELLYFIN_PublishedServerUrl=${JELLYFIN_PublishedServerUrl:-http://localhost:8096}
restart: ${JELLYFIN_RESTART:-unless-stopped}
volumes:
- ${VOL_PATH:-./data}/jellyfin-cache:/cache
- ${VOL_PATH:-./data}/jellyfin-config:/config
- ${VOL_PATH:-./data}/jellyfin-content/books:/books
- ${VOL_PATH:-./data}/jellyfin-content/media:/media
- ${VOL_PATH:-./data}/jellyfin-content/movies:/movies
- ${VOL_PATH:-./data}/jellyfin-content/music:/music
- ${VOL_PATH:-./data}/jellyfin-content/musicvideos:/musicvideos
- ${VOL_PATH:-./data}/jellyfin-content/photos:/photos
- ${VOL_PATH:-./data}/jellyfin-content/shows:/shows
- ${VOL_PATH:-/data}/jellyfin/cache:/cache
- ${VOL_PATH:-/data}/jellyfin/config:/config
- ${VOL_PATH:-/data}/jellyfin/media/books:/books
- ${VOL_PATH:-/data}/jellyfin/media/movies:/movies
- ${VOL_PATH:-/data}/jellyfin/media/music:/music
- ${VOL_PATH:-/data}/jellyfin/media/photos:/photos
- ${VOL_PATH:-/data}/jellyfin/media/shows:/shows
environment:
- JELLYFIN_PublishedServerUrl=${JELLYFIN_URL:-http://localhost:8096}
ports:
- "${JELLYFIN_PORT:-8096}:8096"
networks:
- proxy
- internal
networks:
proxy:
external: true
internal:
+6 -5
View File
@@ -1,7 +1,8 @@
# Global
VOL_PATH=./data
COOKBOOK=/git/docker-compose-cookbooks #HELP: cookbooks
# Compose
VOL_PATH=/data
JELLYFIN_IMAGE=jellyfin/jellyfin:latest
JELLYFIN_RESTART=unless-stopped
JELLYFIN_PORT=8096
# Jellyfin
JELLYFIN_IMAGE=jellyfin/jellyfin:latest
JELLYFIN_PublishedServerUrl=http://localhost:8096
JELLYFIN_URL=http://localhost:8096