-
Notifications
You must be signed in to change notification settings - Fork 205
/
docker.env.template
30 lines (24 loc) · 1012 Bytes
/
docker.env.template
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
##############################
## Rename me to docker.env! ##
##############################
# Set node environment to production
NODE_ENV=production
# Set the JWT secret for the API server
JWT_SECRET=randomstring
# Set and generate postgres credentials
#
# These variables can be changed to point to a database you host yourself
POSTGRES_DB=hammerhead_production
POSTGRES_USER=retool_internal_user
POSTGRES_HOST=postgres
POSTGRES_PORT=5432
POSTGRES_PASSWORD=randomstring
## Set key to encrypt and decrypt database passwords, etc.
## This random string value should be stored privately, and should not be changed over the lifetime of the deployment
# ENCRYPTION_KEY=YOUR_ENCRYPTION_KEY_HERE
## If you need Google SSO
# CLIENT_ID={GOOGLE CLIENT ID}
# CLIENT_SECRET={GOOGLE CLIENT SECRET}
## If you wish for Retool to be hosted on a server with a public IP address, then you can use these configs to run the nginx container
# HOSTNAME=https://retool.company.com
# DOMAINS=http://localhost -> http://api:3000