-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
54 lines (47 loc) · 1.19 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
version: '2'
services:
postgres:
image: postgres
elasticsearch:
image: elasticsearch
rabbitmq:
image: rabbitmq
django:
build: .
links:
- postgres
- elasticsearch
- rabbitmq
environment:
- DATABASE_URL=postgres://postgres:postgres@postgres:5432/postgres
- BROKER_URL=amqp://guest:guest@rabbitmq:5672/
- DJANGO_SETTINGS_MODULE={{project_name}}.settings
- GEOSERVER_BASE_URL="http://geoserver:8080/geoserver/"
- ALLOWED_HOSTS=['django',]
celery:
build: .
links:
- rabbitmq
- postgres
- elasticsearch
command: celery worker --app={{project_name}}.celeryapp:app -B -l INFO
environment:
- DATABASE_URL=postgres://postgres:postgres@postgres:5432/postgres
- BROKER_URL=amqp://guest:guest@rabbitmq:5672/
- GEOSERVER_BASE_URL="http://geoserver:8080/geoserver/"
- DJANGO_SETTINGS_MODULE={{project_name}}.settings
- ALLOWED_HOSTS=['django',]
- C_FORCE_ROOT=1
geoserver:
image: waybarrios/geoserver
links:
- postgres
ports:
- "8080"
nginx:
image: terranodo/nginx:geoserver
links:
- django
- geoserver
ports:
- "80:80"