-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
80 lines (71 loc) · 1.28 KB
/
docker-compose.yml
File metadata and controls
80 lines (71 loc) · 1.28 KB
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
version: '2'
services:
dm:
image: opv-dm
ports:
- "5005:5005"
- "2121:2121"
- "5050:5050"
environment:
OPV_DM_PORT: 5005
postgres:
image: mdillon/postgis
environment:
POSTGRES_USER: opv
POSTGRES_PASSWORD: opv42
POSTGRES_DB: opv
ports:
- "5432:5432"
dbrest:
image: opv-dbrest
depends_on:
- postgres
environment:
OPV_DBREST_USER: opv
OPV_DBREST_PASSWORD: opv42
OPV_DBREST_DB: opv
OPV_DBREST_DB_ADDRESS: postgres
ports:
- "5000:5000"
redis:
image: redis
celery:
image: opv-celery
depends_on:
- redis
- dbrest
- dm
environment:
OPV_TASKS_DBREST_ADDRESS: dbrest
OPV_TASKS_DBREST_PORT: 5000
OPV_TASKS_DIRMANAGER_ADDRESS: dm
OPV_TASKS_DIRMANAGER_PORT: 5005
CELERY_CONCURRENCY: 2
flower:
image: opv-flower
depends_on:
- redis
ports:
- "5555:5555"
status:
image: opv-status-api
depends_on:
- redis
- dbrest
- dm
ports:
- "5001:5001"
graph:
image: opv-graph
ports:
- "5015:5015"
opv-status:
image: opv-status
depends_on:
- redis
- dbrest
- dm
- status
- graph
ports:
- "80:80"