15 lines
326 B
Bash
15 lines
326 B
Bash
# User ID the container process runs as
|
|
PUID=1000
|
|
|
|
# Group ID the container process runs as
|
|
PGID=1000
|
|
|
|
# Port to expose ntfy on the host
|
|
NTFY_PORT=80
|
|
|
|
# Username used to build the bind mount paths (e.g. /home/<username>/ntfy/...)
|
|
NTFY_USERNAME=ntfy
|
|
|
|
# Timezone for the container (e.g. America/New_York)
|
|
TZ=America/Los_Angeles
|