Files
homepage/compose.yaml
T

22 lines
597 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
2026-07-12 20:26:51 +02:00
#network_mode: "host"
ports:
- ${COMPOSE_PORT_HTTP:-3000}:3000
2026-05-28 10:14:28 +02:00
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-12 20:26:51 +02:00
# PORT: ${PORT:-3000}
2026-07-06 20:47:52 +02:00
HOMEPAGE_ALLOWED_HOSTS: ${HOMEPAGE_ALLOWED_HOSTS} # nostromo.lan:3000,phantom1.lan:3000,homepage.lan
2026-07-12 14:47:53 +02:00
HOMEPAGE_VAR_NAME: ${HOMEPAGE_VAR_NAME}
2026-06-07 12:04:29 +02:00
volumes:
config:
icons:
2026-05-28 10:14:28 +02:00