-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.env.dist.compose.dev
54 lines (40 loc) · 1.05 KB
/
.env.dist.compose.dev
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# environment variables for installation with docker compose
# with the dev version: compose.dev.yml
# -----------------------------------------------------------
# fill these variables in case you want to install odtp with
# docker compose
# local setup and compose
# odtp db instance in the mongo db: "odtp"
ODTP_MONGO_DB=
# s3 bucket name: "odtp"
ODTP_BUCKET_NAME=
# s3 access and secret key
ODTP_ACCESS_KEY=
ODTP_SECRET_KEY=
# your github token
GITHUB_TOKEN=
# odtp password
ODTP_PASSWORD=
# mongodb user and password
MONGO_DB_USER=
MONGO_DB_PASSWORD=
# mongoexpress user and password
MONGO_EXPRESS_USER=
MONGO_EXPRESS_PASSWORD=
# absolute path for docker volumes
ODTP_PATH=
MINIO_PATH=
MONGODB_PATH=
# Dashboard parameters
ODTP_DASHBOARD_PORT=
ODTP_DASHBOARD_JSON_EDITOR=
# Log Level General
ODTP_LOG_LEVEL=ERROR
# Log Level when running executions
RUN_LOG_LEVEL=INFO
# App Path
APP_PATH=
# Install the package in editable mode.
PIP_INSTALL_ARGS="--editable"
# set to False if your docker installation does not allow the flag --gpus all
ALLOW_DOCKER_GPUS=False