Files
docker-compose/homepage/docker-compose.yml
T
2025-06-14 11:55:03 -04:00

16 lines
363 B
YAML

---
services:
homepage:
image: ghcr.io/gethomepage/homepage:latest
container_name: homepage
environment:
PUID: ${UID}
PGID: ${GID}
HOMEPAGE_ALLOWED_HOSTS: portal.homelab.lan:3000
ports:
- 3000:3000
volumes:
- ./config:/app/config
- /var/run/docker.sock:/var/run/docker.sock:ro
restart: unless-stopped