forked from okfn-brasil/serenata-de-amor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
66 lines (59 loc) · 1.2 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
66
version: '3'
services:
rosie:
build:
context: rosie
volumes:
- /tmp/serenata-data:/tmp/serenata-data
- ./rosie:/code
django:
image: serenata/django
depends_on:
- elm
- postgres
- tasks
environment:
- NEW_RELIC_APP_NAME=Jarbas (Django); Jarbas (Combined)
env_file:
- .env
hostname: django
ports:
- "8000:8000"
volumes:
- .:/code
- ./contrib/data:/mnt/data
tasks:
image: serenata/django
environment:
- NEW_RELIC_APP_NAME=Jarbas (Celery); Jarbas (Combined)
env_file:
- .env
depends_on:
- queue
command: ["newrelic-admin", "run-program", "celery", "worker", "--app", "jarbas"]
volumes:
- .:/code
hostname: tasks
elm:
command: ["npm", "run", "watch"]
image: serenata/elm
volumes:
- ./jarbas:/code/jarbas
hostname: elm
queue:
image: rabbitmq:3.7.3-alpine
hostname: queue
postgres:
image: postgres:10.3-alpine
env_file:
- .env
volumes:
- ./db:/var/lib/postgresql
ports:
- "5432:5432"
research:
build:
context: research
volumes:
- ./research:/mnt/code
hostname: research