Homepage Stack: add .env.sample
This commit is contained in:
parent
8f8dad05c9
commit
c4176b1c63
2 changed files with 17 additions and 3 deletions
14
Docker/Docker-Compose/Homepage/.env.sample
Normal file
14
Docker/Docker-Compose/Homepage/.env.sample
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
# Paths to configs and images/icons
|
||||||
|
CONFIG_PATH=
|
||||||
|
ICON_PATH=
|
||||||
|
IMAGE_PATH=
|
||||||
|
|
||||||
|
# The hostname of the homepage
|
||||||
|
HOMEPAGE_ALLOWED_HOSTS=
|
||||||
|
|
||||||
|
# Specify the UID and GID of the user and group to run the container as
|
||||||
|
PUID=
|
||||||
|
PGID=
|
||||||
|
|
||||||
|
# Loki logging url endpoint
|
||||||
|
LOKI_URL=
|
|
@ -11,6 +11,6 @@ services:
|
||||||
- ${IMAGE_PATH:-./Images}:/app/public/images
|
- ${IMAGE_PATH:-./Images}:/app/public/images
|
||||||
# - /var/run/docker.sock:/var/run/docker.sock # (optional) For docker integrations, see alternative methods
|
# - /var/run/docker.sock:/var/run/docker.sock # (optional) For docker integrations, see alternative methods
|
||||||
environment:
|
environment:
|
||||||
- HOMEPAGE_ALLOWED_HOSTS=${HOMEPAGE_ALLOWED_HOSTS:-homepage.lan} # required, may need port. See gethomepage.dev/installation/#homepage_allowed_hosts
|
- HOMEPAGE_ALLOWED_HOSTS=${HOMEPAGE_ALLOWED_HOSTS:-homepage.lan} # required, may need port. See gethomepage.dev/installation/#homepage_allowed_hosts
|
||||||
- PUID=${PUID:-1000}
|
- PUID=${PUID:-1000}
|
||||||
- PGID=${PGID:-1000}
|
- PGID=${PGID:-1000}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue