-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
243 lines (228 loc) · 5.49 KB
/
docker-compose.yml
File metadata and controls
243 lines (228 loc) · 5.49 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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
# See https://docs.docker.com/compose/compose-file/
version: '2'
services:
nginx:
container_name: lingdb_nginx
build: ./nginx
image: lingdb/nginx
depends_on:
- cobl
- sndcomp
links:
- cobl
- sndcomp
volumes:
- ${DOCKER_BASE}/nginx/sound:/sound
- /tmp/ielexStatic:/ielexStatic
ports:
- 80:80
network_mode: "bridge"
restart: unless-stopped
logging:
driver: journald
cobl:
container_name: lingdb_cobl
build: ./CoBL
image: lingdb/cobl
depends_on:
- postgres
links:
- postgres
environment:
SECRET_KEY: '${DJANGO_SECRET}'
DB_NAME: 'ielexdb201510'
DB_USER: 'ielexuser'
DB_PASSWORD: '${POSTGRES_PASSWORD}'
DB_HOST: 'postgres'
DB_PORT: '5432'
DEBUG: 'False'
volumes:
- /tmp/ielexStatic:/copyStatic
network_mode: "bridge"
restart: unless-stopped
logging:
driver: journald
cobl_nexus:
container_name: lingdb_cobl_nexus
build: ./CoBL/nexus
image: lingdb/cobl_nexus
depends_on:
- postgres
links:
- postgres
environment:
SECRET_KEY: '${DJANGO_SECRET}'
DB_NAME: 'ielexdb201510'
DB_USER: 'ielexuser'
DB_PASSWORD: '${POSTGRES_PASSWORD}'
DB_HOST: 'postgres'
DB_PORT: '5432'
DEBUG: 'False'
network_mode: "bridge"
restart: unless-stopped
cobl_debug:
container_name: lingdb_cobl_debug
build: ./CoBL/debug
image: lingdb/cobl_debug
depends_on:
- postgres
links:
- postgres
environment:
SECRET_KEY: '${DJANGO_SECRET}'
DB_NAME: 'ielexdb201510'
DB_USER: 'ielexuser'
DB_PASSWORD: '${POSTGRES_PASSWORD}'
DB_HOST: 'postgres'
DB_PORT: '5432'
DEBUG: 'True'
network_mode: "bridge"
ports:
- 80:5000
postgres:
container_name: lingdb_postgres
build: ./postgres
image: lingdb/postgres
environment:
POSTGRES_PASSWORD: '${POSTGRES_PASSWORD}'
POSTGRES_USER: 'ielexuser'
network_mode: "bridge"
restart: unless-stopped
logging:
driver: journald
postgres_backup:
container_name: lingdb_postgres_backup
build: ./postgres/backup
image: lingdb/postgres_backup
depends_on:
- postgres
links:
- postgres
environment:
PGPASSWORD: '${POSTGRES_PASSWORD}'
volumes:
- ${DOCKER_BASE}/postgres/backup:/backup
network_mode: "bridge"
restart: unless-stopped
postgres_create:
container_name: lingdb_postgres_create
build: ./postgres/create
image: lingdb/postgres_create
depends_on:
- postgres
links:
- postgres
environment:
PGPASSWORD: '${POSTGRES_PASSWORD}'
volumes:
- ${DOCKER_BASE}/postgres/create:/create
network_mode: "bridge"
sndcomp:
container_name: lingdb_sndcomp
build: ./sndcomp.php
image: lingdb/sndcomp.php
depends_on:
- mariadb
links:
- mariadb
volumes:
- ${DOCKER_BASE}/nginx/sound:/var/www/html/sound
environment:
DEPLOYED: 'true'
MYSQL_PASSWORD: "${MYSQL_ROOT_PASSWORD}"
MYSQL_USER: "root"
MYSQL_SERVER: 'mariadb'
MYSQL_DATABASE: 'v4'
network_mode: "bridge"
restart: unless-stopped
logging:
driver: journald
# Container for sndcomp development:
sndcomp_devel:
container_name: lingdb_sndcomp_devel
build: ./sndcomp.php
image: lingdb/sndcomp.php
depends_on:
- mariadb
links:
- mariadb
volumes:
- ${DOCKER_BASE}/sndcomp.php/src:/var/www/html
- ${DOCKER_BASE}/nginx/sound:/var/www/html/sound
network_mode: "bridge"
ports:
- 8000:80
restart: "no"
environment:
MYSQL_PASSWORD: "${MYSQL_ROOT_PASSWORD}"
MYSQL_USER: "root"
MYSQL_SERVER: 'mariadb'
MYSQL_DATABASE: 'v4'
# Export needs link against mapnik
sndcomp_export:
container_name: lingdb_sndcomp_export
build: ./sndcomp.php
image: lingdb/sndcomp.php
depends_on:
- mariadb
- mapnik
links:
- mariadb
- mapnik
volumes:
- ${DOCKER_BASE}/sndcomp.php/src:/var/www/html
- ${DOCKER_BASE}/nginx/sound:/var/www/html/sound
environment:
DEPLOYED: 'true'
MYSQL_PASSWORD: "${MYSQL_ROOT_PASSWORD}"
MYSQL_USER: "root"
MYSQL_SERVER: 'mariadb'
MYSQL_DATABASE: 'v4'
network_mode: "bridge"
restart: "no"
mariadb:
container_name: lingdb_mariadb
build: ./mariadb
image: lingdb/mariadb
environment:
MYSQL_ROOT_PASSWORD: "${MYSQL_ROOT_PASSWORD}"
MYSQL_DATABASE: 'v4'
network_mode: "bridge"
restart: unless-stopped
logging:
driver: journald
mariadb_backup:
container_name: lingdb_mariadb_backup
build: ./mariadb/backup
image: lingdb/mariadb_backup
depends_on:
- mariadb
links:
- mariadb
environment:
MYSQL_ROOT_PASSWORD: '${MYSQL_ROOT_PASSWORD}'
volumes:
- ${DOCKER_BASE}/mariadb/backup:/backup
network_mode: "bridge"
restart: unless-stopped
mariadb_create:
container_name: lingdb_mariadb_create
build: ./mariadb/create
image: lingdb/mariadb_create
depends_on:
- mariadb
links:
- mariadb
environment:
MYSQL_ROOT_PASSWORD: '${MYSQL_ROOT_PASSWORD}'
volumes:
- ${DOCKER_BASE}/mariadb/create:/create
network_mode: "bridge"
mapnik:
container_name: lingdb_mapnik
image: klokantech/tileserver-mapnik
labels:
lingdb: mapnik
volumes:
- ${DOCKER_BASE}/mapnik:/data
network_mode: "bridge"