-
Notifications
You must be signed in to change notification settings - Fork 6
/
docker-compose.yml
65 lines (62 loc) · 1.41 KB
/
docker-compose.yml
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
54
55
56
57
58
59
60
61
62
63
64
65
version: '3'
services:
db:
image: kartoza/postgis
environment:
- POSTGRES_PASS=postgres
- POSTGRES_USER=postgres
volumes:
- postgres_data:/var/lib/postgresql/data/
business-logic:
build:
context: business-logic-server
dockerfile: Dockerfile
command: python3.7 manage.py runserver 0.0.0.0:8000
environment:
- DJANGO_DEBUG=enabled
- SQL_DATABASE=gis
- FLYRIGHT_BUILD=DEV
- SQL_HOST=db
- SQL_PORT=5432
- SQL_USER=postgres
- SQL_PASSWORD=postgres
- SQL_ENGINE=django.contrib.gis.db.backends.postgis
- DATABASE=postgres
- SLACKBOT_WEBHOOK_URL=http://something.slack.com
- SUPERUSER_USERNAME=admin
- SUPERUSER_PASSWORD=password
- SLACKBOT_ENABLED=disabled
volumes:
- .:/usr/src/app
ports:
- 8000:8000
expose:
- 8000
web:
build:
context: webapp
dockerfile: Dockerfile
command: yarn start
environment:
- HOST=0.0.0.0
- PORT=8080
- VUE_APP_BUSINESS_LOGIC_HOST=business-logic:8000
- CHOKIDAR_USEPOLLING=true
- CLIENT_ID=1
- CLIENT_SECRET=2
volumes:
- .:/usr/src/app
ports:
- 8080:8080
expose:
- 8080
redis:
image: redis
ports:
- 6379:6379
expose:
- 6379
volumes:
postgres_data: