22 lines
580 B
Bash
22 lines
580 B
Bash
################################################################
|
|
# .env
|
|
# When both env_file and environment are set for a service, values set by environment have precedence.
|
|
# https://docs.docker.com/compose/environment-variables/envvars-precedence/
|
|
#
|
|
#
|
|
################################################################
|
|
|
|
APPLICATION_NAME=traefik
|
|
WEBAPP_NAME=traefik-px
|
|
DOCKERDIR=/opt
|
|
STACKSDIR=${DOCKERDIR}/stacks/${APPLICATION_NAME}
|
|
DATADIR=${DOCKERDIR}/data/${APPLICATION_NAME}
|
|
SECRETSDIR=${STACKSDIR}/secrets
|
|
|
|
DOMAINNAME=sthome.org
|
|
|
|
PUID=3012
|
|
PGID=3011
|
|
TZ=Africa/Johannesburg
|
|
|