-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
160 lines (159 loc) · 3.37 KB
/
docker-compose.yml
File metadata and controls
160 lines (159 loc) · 3.37 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
version: '3'
services:
aac-db:
image: mysql
volumes:
- aac-db-data:/var/lib/mysql
container_name: aac-mysql
env_file: ./aac/mysql.env
restart: always
aac:
image: simpaticoproject/aac:1.1.0
depends_on:
- aac-db
links:
- aac-db:mysql-server
container_name: aac
ports:
- 8500:8080
env_file: ./aac/aac.env
gamification-db:
image: mongo:3.6.2-jessie
container_name: gamification-db
ports:
- 50000:27017
volumes:
- gamification-db-data:/data/db
gamification-engine:
image: simpaticoproject/gamificationengine:2.4.0-53f06cd
container_name: gamification-engine
ports:
- 8010:8010
- 7777:7777
depends_on:
- gamification-db
links:
- gamification-db:mongodb
volumes:
- ./gamification/run-configs:/app/run-configs
- ./gamification/game:/app-run
entrypoint:
- /bin/sh
- /app-run/docker-entrypoint.sh
upm-db:
image: simpaticoproject/upm-db:1.0.0
volumes:
- upm-db-data:/var/lib/mysql
container_name: upm-db
env_file: ./upm/upm-db.env
restart: always
upm-server:
image: simpaticoproject/upm-server:1.0.0
depends_on:
- upm-db
links:
- upm-db:mysql-server
container_name: upm-server
ports:
- 1616:1616
- 1717:1717
sae-db:
image: mongo:3.6.2-jessie
container_name: sae-db
ports:
- 50001:27017
volumes:
- sae-db-data:/data/db
sae-server:
build:
context: ../simpatico-tae
container_name: sae-server
ports:
- 8001:80
depends_on:
- sae-db
links:
- sae-db:mongodb
env_file: ../simpatico-platform/sae/app.env
esm:
build:
context: ../eSM
container_name: esm
volumes:
- ./esm:/app-run
entrypoint:
- sh
- /app-run/docker-entrypoint.sh
ports:
- 3700:3700
qae-gateway:
image: nginx:alpine
volumes:
- ./citizenpedia/web:/usr/share/nginx/html
- ./citizenpedia/web/conf.d:/etc/nginx/conf.d
ports:
- 8100:80
restart: always
qae-db:
restart: always
image: mongo:latest
container_name: qae-db
volumes:
- qae-db-data:/data/db
ports:
- 28017:27017
qae:
build:
context: ../citizenpedia
depends_on:
- qae-db
links:
- qae-db:mongodb
volumes:
- ./citizenpedia/server:/app-run
entrypoint:
- /bin/sh
- /app-run/docker-entrypoint.sh
environment:
- AAC_ID=
- AAC_SECRET=
- AAC_ROOT_URL=
- AAC_TOKEN_URL=
- AAC_URL=
- AAC_CALLBACK_URL=
logs:
build:
context: ../logs
dockerfile: Dockerfile.platform
container_name: logs
env_file: ./logs/logs.env
depends_on:
- es-logs
links:
- es-logs:es
ports:
- 8899:8080
es-logs:
image: docker.elastic.co/elasticsearch/elasticsearch:5.5.3
container_name: es-logs
environment:
- cluster.name=simpatico
- discovery.type=single-node
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
- xpack.security.enabled=false
- xpack.monitoring.enabled=false
- xpack.ml.enabled=false
- xpack.graph.enabled=false
- xpack.watcher.enabled=false
ulimits:
memlock:
soft: -1
hard: -1
ports:
- 9200:9200
volumes:
aac-db-data:
gamification-db-data:
upm-db-data:
sae-db-data:
qae-db-data: