add Homepage and configure services for discovery

This commit is contained in:
SweetId
2024-02-17 17:17:15 -05:00
parent 5a8d189c72
commit 13a06c60bb
10 changed files with 62 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
version: "3.3"
services:
homepage:
image: ghcr.io/gethomepage/homepage:latest
container_name: homepage
ports:
- ${HOMEPAGE_HTTP_PORT}:3000
volumes:
- ${HOMEPAGE_DIR}:/app/config # Make sure your local config directory exists
- /var/run/docker.sock:/var/run/docker.sock # (optional) For docker integrations

5
Homepage/stack.env Normal file
View File

@@ -0,0 +1,5 @@
HOMEPAGE_DIR=/path/to/homepage
HOMEPAGE_HTTP_PORT=3000
HOMEPAGE_PUID=1000
HOMEPAGE_PGID=1000