mirror of
https://github.com/nickyeoman/docker-compose-cookbooks.git
synced 2026-09-04 02:46:23 +00:00
fix first batch of _dev stacks: authentik, directus, duplicati, filebrowser, firefly, headscale, homepage, invoiceninja, jellyfin, lubelogger
This commit is contained in:
+20
-12
@@ -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:
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user