21 lines
570 B
Bash
21 lines
570 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
|
|
DOCKERDIR=/mnt/SSD1/docker/
|
|
STACKSDIR=${DOCKERDIR}/stacks/${APPLICATION_NAME}
|
|
DATADIR=${DOCKERDIR}/data/${APPLICATION_NAME}
|
|
SECRETSDIR=${STACKSDIR}/secrets
|
|
|
|
DOMAINNAME=sthome.org
|
|
|
|
PUID=3012
|
|
PGID=3011
|
|
TZ=Africa/Johannesburg
|
|
|