Update configs/docker-compose.yaml

This commit is contained in:
2026-05-29 03:07:52 +00:00
parent e7d0f56a56
commit aab1b5d75a
+16
View File
@@ -0,0 +1,16 @@
version: "3.3"
services:
homepage:
image: ghcr.io/gethomepage/homepage:latest
container_name: homepage
ports:
- 3000:3000
volumes:
- /etc/homepage:/app/config # Make sure your local config directory exists
- /var/run/docker.sock:/var/run/docker.sock # (optional) For docker integrations
- /etc/homepage/images:/app/public/images
- /smb:/smb
restart: unless-stopped
environment:
HOMEPAGE_ALLOWED_HOSTS: 10.10.14.199:3000,home.wittenberger.us,home.wittenberger.local
env_file: "/etc/homepage/.env"