forked from Sengorius/docker-proxy-stack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.template
More file actions
40 lines (31 loc) · 1.61 KB
/
.env.template
File metadata and controls
40 lines (31 loc) · 1.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
############################################################
### Configure paths
###
# the path to store your sql file to be imported
export DATA_PATH="${BASE_DIR}/data"
# the path to the docker socket on host machine
export SOCK_PATH="/var/run/docker.sock"
# in case you would like to change the default name of the environment file use
# this variable to override; this file is mandatory and used in pretty every function
export DEFAULT_ENV_FILE=".env"
# list of container name suffixes, that identify as webservice, e.g. NGINX
# these containers should be configured with a VIRTUAL_HOST environment variable
# separate multiple with pipes "|"
export WEB_CONTAINER_SUFFIXES="web"
# list of container name suffixes, that identify as apps/microservices
# separate multiple with pipes "|"
export APP_CONTAINER_SUFFIXES="app|php"
# if you want to ignore some containers from getting their /etc/hosts file updated
# with local adresses - e.g. DNS services or Pi-Hole - enter the container names
# here and separate multiple with pipes "|"
export IGNORED_HOSTS_CONTAINERS=""
# this will attach to the docker logs of the proxy containers after executing
# `DockerExec proxy init` if set to 1
export ATTACH_TO_COMPOSE_LOGS=1
# the name of the local Docker network for this proxy-stack
export NETWORK_NAME=proxy-network
# tell "DockerExec do ps" what columns to print out; separate with a pipe
# possible values are: ID, Image, Command, CreatedAt, RunningFor, Ports,
# State, Status, Size, Names, Labels, Mounts and Networks
# see https://docs.docker.com/engine/reference/commandline/ps/#formatting
export DOCKER_PS_COLUMNS="Image|Status|Ports|Names"