forked from cga-harvard/Hypermap-Registry
-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
52 lines (44 loc) · 865 Bytes
/
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
version: '2'
services:
postgres:
image: terranodo/postgis
elasticsearch:
image: terranodo/elasticsearch
rabbitmq:
image: rabbitmq
memcached:
image: memcached
django:
image: terranodo/registry
links:
- postgres
- elasticsearch
- rabbitmq
- memcached
env_file:
- django.env
celery:
image: terranodo/registry
links:
- rabbitmq
- postgres
- elasticsearch
- memcached
depends_on:
- rabbitmq
- postgres
entrypoint: wait-for-postgres postgres
command: celery worker --app=hypermap.celeryapp:app -B -l INFO
env_file:
- django.env
maploom:
image: terranodo/maploom
command: grunt serve
nginx:
image: geonode/nginx:registry
links:
- django
- maploom
- elasticsearch
ports:
- "80:80"