forked from NASA-AMMOS/MMGIS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose-env.yml
More file actions
38 lines (38 loc) · 935 Bytes
/
docker-compose-env.yml
File metadata and controls
38 lines (38 loc) · 935 Bytes
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
version: "3"
services:
mmgis:
image: mmgis:development
depends_on:
- mmgis.db
environment:
- SERVER=node
- PORT=8888
- AUTH=none
- NODE_ENV=development
- SECRET=
- VERBOSE_LOGGING=false
- DB_HOST=localhost
- DB_PORT=5432
- DB_NAME=MMGIS
- DB_USER=postgres
- DB_PASS=somethingsimple
- HIDE_CONFIG=false
- CONFIGCONFIG_PATH=
- FORCE_CONFIG_PATH=
- FRAME_ANCESTORS=
- FRAME_SRC=
- LEADS=["ADMIN"]
- ENABLE_MMGIS_WEBSOCKETS=true
- ENABLE_CONFIG_WEBSOCKETS=true
- ENABLE_CONFIG_OVERRIDE=false
- MAIN_MISSION=
volumes:
- /var/www/html/Missions/:/usr/src/app/Missions
mmgis.db:
image: postgis/postgis:10-2.5-alpine
env_file: .env
ports:
- 5432:5432
restart: on-failure
volumes:
- mmgis-db:/var/lib/postgresql/data