@@ -40,9 +40,10 @@ services:
40
40
volumes :
41
41
- ./binaryData:/webknossos/binaryData
42
42
environment :
43
- POSTGRES_URL : jdbc:postgresql://postgres/webknossos
44
- POSTGRES_USER : webknossos_user
45
- POSTGRES_PASSWORD : secret_password
43
+ - CERTIFICATE
44
+ - POSTGRES_URL=jdbc:postgresql://postgres/webknossos
45
+ - POSTGRES_USER=webknossos_user
46
+ - POSTGRES_PASSWORD=secret_password
46
47
user : ${USER_UID:-1000}:${USER_GID:-1000}
47
48
48
49
webknossos-datastore :
@@ -100,6 +101,8 @@ services:
100
101
- USER_UID
101
102
- USER_GID
102
103
- COVERALLS_REPO_TOKEN
104
+ - CERTIFICATE
105
+ - CERTIFICATE_PUBLIC_KEY
103
106
- TZ=${TZ:-Europe/Berlin}
104
107
- POSTGRES_URL=jdbc:postgresql://postgres/webknossos
105
108
- POSTGRES_USER=webknossos_user
@@ -142,9 +145,9 @@ services:
142
145
fossildb-dev :
143
146
condition : service_healthy
144
147
environment :
145
- POSTGRES_URL : jdbc:postgresql://postgres/webknossos
146
- POSTGRES_USER : webknossos_user
147
- POSTGRES_PASSWORD : secret_password
148
+ - POSTGRES_URL= jdbc:postgresql://postgres/webknossos
149
+ - POSTGRES_USER= webknossos_user
150
+ - POSTGRES_PASSWORD= secret_password
148
151
command :
149
152
- bash
150
153
- -c
@@ -186,9 +189,10 @@ services:
186
189
fossildb :
187
190
condition : service_healthy
188
191
environment :
189
- POSTGRES_URL : jdbc:postgresql://postgres/webknossos_testing
190
- POSTGRES_USER : webknossos_user
191
- POSTGRES_PASSWORD : secret_password
192
+ - CERTIFICATE
193
+ - POSTGRES_URL=jdbc:postgresql://postgres/webknossos
194
+ - POSTGRES_USER=webknossos_user
195
+ - POSTGRES_PASSWORD=secret_password
192
196
command :
193
197
- bash
194
198
- -c
@@ -218,9 +222,9 @@ services:
218
222
postgres :
219
223
image : postgres:10-alpine
220
224
environment :
221
- POSTGRES_DB : webknossos
222
- POSTGRES_USER : webknossos_user
223
- POSTGRES_PASSWORD : secret_password
225
+ - POSTGRES_DB= webknossos
226
+ - POSTGRES_USER= webknossos_user
227
+ - POSTGRES_PASSWORD= secret_password
224
228
healthcheck :
225
229
test : ["CMD-SHELL", "pg_isready -d webknossos -U webknossos_user -h 127.0.0.1 -p 5432"]
226
230
interval : 2s
@@ -252,7 +256,7 @@ services:
252
256
postgres-persisted :
253
257
condition : service_healthy
254
258
environment :
255
- PGPASSWORD : secret_password
259
+ - PGPASSWORD= secret_password
256
260
volumes :
257
261
- ./conf/evolutions/:/evolutions/
258
262
@@ -265,7 +269,7 @@ services:
265
269
postgres-dev :
266
270
condition : service_healthy
267
271
environment :
268
- PGPASSWORD : secret_password
272
+ - PGPASSWORD= secret_password
269
273
270
274
# FossilDB
271
275
fossildb :
0 commit comments