forked from thesocialdev/kartodock
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathenv-example
48 lines (31 loc) · 1.2 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
###########################################################
###################### 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
### WORKSPACE ########################################
WORKSPACE_SSH_PORT=2221
WORKSPACE_NCPU=2
WORKSPACE_MEMORY=4096
### POSTGRES ########################################
PGDATABASE=gis
PGUSER=default
PGPASSWORD=secret
PGPORT=5432
### REDIS ########################################
REDIS_PORT=6379
### TEGOLA ########################################
TEGOLA_PORT=8080
### MAPUTNIK ########################################
MAPUTNIK_PORT=8888