Compare commits
10 Commits
319df224b8
...
c2be95d9eb
| Author | SHA1 | Date | |
|---|---|---|---|
| c2be95d9eb | |||
| 10e8d4e6bd | |||
| cdf648140e | |||
| a0bf4b8606 | |||
| 2f486ba7cb | |||
| 6e09d104c9 | |||
| 7b5fa09f7b | |||
| 394820f84e | |||
| 582176c35e | |||
| 38878264d6 |
@@ -0,0 +1,3 @@
|
|||||||
|
HOMEPAGE_ALLOWED_HOSTS=
|
||||||
|
HOMEPAGE_VAR_NAME=localhost
|
||||||
|
COMPOSE_PORT_HTTP=9000
|
||||||
+4
-1
@@ -3,14 +3,17 @@ services:
|
|||||||
image: ghcr.io/gethomepage/homepage:latest
|
image: ghcr.io/gethomepage/homepage:latest
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
container_name: homepage
|
container_name: homepage
|
||||||
|
#network_mode: "host"
|
||||||
ports:
|
ports:
|
||||||
- 3000:3000
|
- ${COMPOSE_PORT_HTTP:-3000}:3000
|
||||||
volumes:
|
volumes:
|
||||||
- config:/app/config
|
- config:/app/config
|
||||||
- icons:/app/public/icons
|
- icons:/app/public/icons
|
||||||
- /var/run/docker.sock:/var/run/docker.sock:ro # (optional) For docker integrations
|
- /var/run/docker.sock:/var/run/docker.sock:ro # (optional) For docker integrations
|
||||||
environment:
|
environment:
|
||||||
|
# PORT: ${PORT:-3000}
|
||||||
HOMEPAGE_ALLOWED_HOSTS: ${HOMEPAGE_ALLOWED_HOSTS} # nostromo.lan:3000,phantom1.lan:3000,homepage.lan
|
HOMEPAGE_ALLOWED_HOSTS: ${HOMEPAGE_ALLOWED_HOSTS} # nostromo.lan:3000,phantom1.lan:3000,homepage.lan
|
||||||
|
HOMEPAGE_VAR_NAME: ${HOMEPAGE_VAR_NAME}
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
config:
|
config:
|
||||||
|
|||||||
Reference in New Issue
Block a user