This repository has been archived by the owner on Feb 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathenv-example
53 lines (34 loc) · 1.4 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
41
42
43
44
45
46
47
48
49
50
51
52
53
###########################################################
###################### General Setup ######################
###########################################################
### Paths #################################################
# Point to the path of your applications code on your host
APP_CODE_PATH_HOST=../
# Point to where the `APP_CODE_PATH_HOST` should be in the container. You may add flags to the path `:cached`, `:delegated`. When using Docker Sync add `:nocopy`
APP_CODE_PATH_CONTAINER=/srv
# Choose storage path on your machine. For all storage systems
DATA_PATH_HOST=../data
PG_DATA_PATH_HOST=../data
### Drivers ################################################
# All volumes driver
VOLUMES_DRIVER=local
# All Networks driver
NETWORKS_DRIVER=bridge
### Docker Host IP ########################################
# Enter your Docker Host IP (will be appended to /etc/hosts). Default is `10.0.75.1`
DOCKER_HOST_IP=172.17.0.1
### WORKSPACE ########################################
WORKSPACE_SSH_PORT=2221
WORKSPACE_NCPU=2
WORKSPACE_MEMORY=4096
### POSTGRES ########################################
PGDATABASE=gis
PGUSER=default
PGPASSWORD=secret
PGPORT=5432
### REDIS #################################################
REDIS_PORT=6379
### CASSANDRA #################################################
CASSANDRA_PORT=9042
### TEGOLA #################################################
TEGOLA_PORT=8080