15 lines
502 B
Bash
15 lines
502 B
Bash
# Comma-separated list of hostnames/IPs allowed to access Homepage (e.g. homepage.example.com,192.168.1.10)
|
|
HOMEPAGE_ALLOWED_HOSTS=
|
|
|
|
# User ID to run the container process as (match your host user's UID)
|
|
HOMEPAGE_PUID=1000
|
|
|
|
# Group ID to run the container process as (match your host user's GID)
|
|
HOMEPAGE_PGID=1000
|
|
|
|
# Host port to expose Homepage on (maps to container port 3000)
|
|
HOMEPAGE_PORT=3000
|
|
|
|
# Host username whose home directory holds the config folder (used in volume path)
|
|
HOMEPAGE_USERNAME=
|