-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path.env.example
40 lines (32 loc) · 1 KB
/
.env.example
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
# #########################################
# ASKCOS Deployment Configuration Variables
# #########################################
# This file is automatically read by Docker Compose
# Variables defined here will be overwritten by any shell variables (including those defined in deploy.sh)
# Docker Compose variables
COMPOSE_FILE=
COMPOSE_PROJECT_NAME=deploy
# Increase timeout for communication with Docker daemon
COMPOSE_HTTP_TIMEOUT=120
# Container registry settings (must include trailing slash)
PUBLIC_IMAGE_REGISTRY=
ASKCOS_IMAGE_REGISTRY=askcos/
# Hostname to be added to Django allowed_hosts
CURRENT_HOST=*
# Mongo DB configuration
MONGO_HOST=mongo
MONGO_USER=askcos
MONGO_INITDB_ROOT_USERNAME=askcos
MONGO_PW=askcos
MONGO_INITDB_ROOT_PASSWORD=askcos
# MySQL User DB configuration
MYSQL_DATABASE=askcos_db
MYSQL_ROOT_PASSWORD=root
# Redis configuration
REDIS_HOST=redis
REDIS_PORT=6379
# RabbitMQ configuration
RABBIT_HOST=rabbit
RABBITMQ_NODE_PORT=5672
# Current ASKCOS version number
VERSION_NUMBER=2021.01