Add homepage/docker-compose.yaml

This commit is contained in:
2026-02-01 21:13:34 +00:00
parent 44f8ab5ae5
commit e83ca5574e

View File

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