-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathconf.template.sh
39 lines (28 loc) · 1.08 KB
/
conf.template.sh
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
#!/bin/sh
#
# The variables below are sourced within the 'deploy.sh' script.
# Override as needed for a deployment.
# Note that any commandline overrides will take precedence.
#
# Whether to deploy the frontend
# frontend=false
# What release of the frontend to deploy
# frontendRelease=LATEST
# The Git location for the frontend
# frontendGit="git:maproulette/maproulette3"
# Whether to deploy the API
# api=false
# What release of the API to deploy
# apiRelease=LATEST
# The Git location for the API
# apiGit="git:maproulette/maproulette-backend"
# Whether the docker containers should use the host network
# useHostNetwork=false
# Whether to wipe the docker database, start clean
# wipeDB=false
# Host port to expose the postgis database container. By default bind to localhost:5432 so that pgadmin is able to connect to the database via an ssh tunnel.
# dbPort="127.0.0.1:5432"
# Whether the database being used is external or not. If it is external than won't link and build the database images
# dbExternal=false
# Whether to just build the docker images and not deploy them
# buildOnly=false