Compare commits

..

10 Commits

Author SHA1 Message Date
bart c2be95d9eb Update compose.yaml 2026-07-12 20:26:51 +02:00
bart 10e8d4e6bd Update compose.yaml 2026-07-12 20:14:18 +02:00
bart cdf648140e Update compose.yaml 2026-07-12 20:13:38 +02:00
bart a0bf4b8606 Update compose.yaml 2026-07-12 20:12:55 +02:00
bart 2f486ba7cb Update compose.yaml 2026-07-12 20:10:04 +02:00
bart 6e09d104c9 Update .env 2026-07-12 17:46:27 +02:00
bart 7b5fa09f7b Update compose.yaml 2026-07-12 15:09:54 +02:00
bart 394820f84e Update compose.yaml 2026-07-12 14:47:53 +02:00
bart 582176c35e Update .env 2026-07-12 14:44:03 +02:00
bart 38878264d6 Add .env 2026-07-06 20:48:50 +02:00
2 changed files with 7 additions and 1 deletions
+3
View File
@@ -0,0 +1,3 @@
HOMEPAGE_ALLOWED_HOSTS=
HOMEPAGE_VAR_NAME=localhost
COMPOSE_PORT_HTTP=9000
+4 -1
View File
@@ -3,14 +3,17 @@ services:
image: ghcr.io/gethomepage/homepage:latest
restart: unless-stopped
container_name: homepage
#network_mode: "host"
ports:
- 3000:3000
- ${COMPOSE_PORT_HTTP:-3000}:3000
volumes:
- config:/app/config
- icons:/app/public/icons
- /var/run/docker.sock:/var/run/docker.sock:ro # (optional) For docker integrations
environment:
# PORT: ${PORT:-3000}
HOMEPAGE_ALLOWED_HOSTS: ${HOMEPAGE_ALLOWED_HOSTS} # nostromo.lan:3000,phantom1.lan:3000,homepage.lan
HOMEPAGE_VAR_NAME: ${HOMEPAGE_VAR_NAME}
volumes:
config: