12 lines
356 B
Bash
12 lines
356 B
Bash
# Main interface port for accessing the application
|
|
DOCKHAND_PORT="3000"
|
|
|
|
# User ID the container process runs as (run `id -u` on the host to get this)
|
|
DOCKHAND_PUID="1000"
|
|
|
|
# Group ID the container process runs as (run `id -g` on the host to get this)
|
|
DOCKHAND_PGID="1000"
|
|
|
|
# Time Zone where the application is operating
|
|
DOCKHAND_TZ="America/Los_Angeles"
|