add: add docker compose stacks

This commit is contained in:
2026-01-16 05:50:15 +00:00
commit d542622d00
18 changed files with 583 additions and 0 deletions

15
homepage/compose.yaml Normal file
View File

@@ -0,0 +1,15 @@
services:
homepage:
image: ghcr.io/gethomepage/homepage:latest
container_name: homepage
environment:
HOMEPAGE_ALLOWED_HOSTS: fireflylab.cc # required, may need port. See gethomepage.dev/installation/#homepage_allowed_hosts
PUID: 1000 # optional, your user id
PGID: 1000 # optional, your group id
ports:
- 8007:3000
volumes:
- /data/docker/homepage/config:/app/config # Make sure your local config directory exists
- /data/docker/homepage/assets:/app/public/images # Make sure your local config directory exists
#- /var/run/docker.sock:/var/run/docker.sock:ro # optional, for docker integrations
restart: unless-stopped