27 lines
745 B
Bash
27 lines
745 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
|
|
|
|
PING_PORT=8083
|
|
|
|
#TRAEFIK2_DNS_MAPPER=traefik2:10.0.0.51
|
|
#TRAEFIK2_HOST_SNI=`traefik-px.sthome.org`
|
|
#TRAEFIK2_NET1_ADDRESS=traefik-px.sthome.org:443
|
|
|