-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathgeneral.env
More file actions
26 lines (20 loc) · 970 Bytes
/
general.env
File metadata and controls
26 lines (20 loc) · 970 Bytes
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
# any other variables that you may want to use go here
# This is used to explicitly inform systems that run on Apple silicon to emulate this architecture
# set only CPU_ARCHITECTURE to amd/arm64
# remove if this causes issues on any other platform
# possible values: amd64, arm64
CPU_ARCHITECTURE=amd64
DOCKER_DEFAULT_PLATFORM=linux/${CPU_ARCHITECTURE:-amd64}
COMPOSE_BAKE=True
COGSTACK_ADMIN_EMAIL=admin@cogstack.net
# used in NiFi for the timezone
TZ="Europe/London"
# IMPORTANT: this is used to prefix all volumes created by docker-compose for ALL services, this includes SUBMODULES
# this has been added for backward compatibility with existing deployments
VOLUME_PREFIX=deploy_
# this has to point to the general.env file in the deploy directory
DEPLOYMENT_ENV_FILE_PATH_GENERAL=../../../deploy/general.env
# this is the default, for containers which dont rely on individual settings
DOCKER_SHM_SIZE=1g
DOCKER_LOG_SIZE_PER_FILE="100m"
DOCKER_LOG_NUM_FILES=10