-
Notifications
You must be signed in to change notification settings - Fork 6
/
docker-compose.prod.yml
88 lines (86 loc) · 1.97 KB
/
docker-compose.prod.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
version: '3'
services:
db:
image: kartoza/postgis:10.0-2.4
environment:
- POSTGRES_PASS=postgres
- POSTGRES_USER=postgres
ports:
- 5432:5432
expose:
- 5432
restart: always
volumes:
- $HOME/postgres_data:/var/lib/postgresql
business-logic:
build:
context: business-logic-server
dockerfile: Dockerfile
command: gunicorn --bind 0.0.0.0:8000 icarus_backend.wsgi:application
environment:
- DJANGO_DEBUG=disabled
- 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
- EMAIL_ADDRESS=${EMAIL_ADDRESS}
- EMAIL_HOST=${EMAIL_HOST}
- SLACKBOT_WEBHOOK_URL=http://something.slack.com
- SUPERUSER_USERNAME=admin
- SUPERUSER_PASSWORD=password
- SLACKBOT_ENABLED=enabled
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=${VUE_APP_BUSINESS_LOGIC_HOST}
- CLIENT_ID=1
- CLIENT_SECRET=2
volumes:
- .:/usr/src/app
ports:
- 8080:8080
expose:
- 8080
nginx:
build: ./nginx
environment:
- WEBAPP_DOMAIN=flyright.police.gatech.edu
- API_DOMAIN=flyright-api.police.gatech.edu
ports:
- 443:443
expose:
- 443
depends_on:
- web
- business-logic
redis:
image: redis
ports:
- 6379:6379
celery-worker:
build:
context: business-logic-server
dockerfile: prod.Dockerfile
command: celery worker -A icarus_backend --loglevel=debug --concurrency=1
volumes:
- .:/usr/src/app
depends_on:
- redis
links:
- redis