Files
homepage/compose.yaml
T

19 lines
477 B
YAML
Raw Normal View History

2026-05-28 10:14:28 +02:00
services:
homepage:
image: ghcr.io/gethomepage/homepage:latest
restart: unless-stopped
container_name: homepage
ports:
- 3000:3000
volumes:
2026-06-07 12:04:29 +02:00
- config:/app/config
- icons:/app/public/icons
2026-05-28 10:14:28 +02:00
- /var/run/docker.sock:/var/run/docker.sock:ro # (optional) For docker integrations
environment:
2026-07-06 20:46:50 +02:00
- HOMEPAGE_ALLOWED_HOSTS: ${HOMEPAGE_ALLOWED_HOSTS} # nostromo.lan:3000,phantom1.lan:3000,homepage.lan
2026-06-07 12:04:29 +02:00
volumes:
config:
icons:
2026-05-28 10:14:28 +02:00