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
+12 -7
View File
@@ -1,13 +1,18 @@
services:
homepage:
image: ${HOMEPAGE_IMAGE:-ghcr.io/gethomepage/homepage:latest}
restart: unless-stopped
restart: ${HOMEPAGE_RESTART:-unless-stopped}
volumes:
- homepage-config:/app/config
- /var/run/docker.sock:/var/run/docker.sock # Optional, for Docker integrations
- ${VOL_PATH:-/data}/homepage/config:/app/config
environment:
- TZ=${TZ:-America/Vancouver} # optional, if your app needs a timezone
- TZ=${TZ:-America/Vancouver}
ports:
- "${HOMEPAGE_PORT:-3000}:3000"
networks:
- proxy
- internal
volumes:
homepage-config:
name: homepage-config
networks:
proxy:
external: true
internal:
+5 -2
View File
@@ -1,3 +1,6 @@
# Homepage
# Compose
VOL_PATH=/data
HOMEPAGE_IMAGE=ghcr.io/gethomepage/homepage:latest
VOL_CONFIG_PATH=./config
HOMEPAGE_RESTART=unless-stopped
HOMEPAGE_PORT=3000
TZ=America/Vancouver