-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdocker-compose-travis.yml
51 lines (47 loc) · 1.54 KB
/
docker-compose-travis.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
version: '3.5'
services:
waardepapieren-service:
volumes:
- ./waardepapieren-service/system-test/certs:/certs:ro
- ./waardepapieren-service/system-test/ephemeral-certs:/ephemeral-certs:ro
- ./waardepapieren-service/configuration/:/app/configuration:ro
build: waardepapieren-service/.
ports:
- 3232:3232
- 3233:3233
environment:
- WAARDEPAPIEREN_CONFIG=/app/configuration/waardepapieren-config-compose-travis.json
# Ignore self-signed ephemeral cert issues
- NODE_TLS_REJECT_UNAUTHORIZED=0
waardepapieren-verblijfplaatshistorie-service:
volumes:
- ./waardepapieren-service/system-test/certs:/certs:ro
- ./waardepapieren-service/system-test/ephemeral-certs:/ephemeral-certs:ro
- ./waardepapieren-service/configuration/:/app/configuration:ro
build: waardepapieren-service/.
environment:
- WAARDEPAPIEREN_CONFIG=/app/configuration/waardepapieren-verblijfplaatshistorie-config-compose-travis.json
# Ignore self-signed ephemeral cert issues
- NODE_TLS_REJECT_UNAUTHORIZED=0
haarlem-frontend:
build:
context: haarlem-frontend/
args:
- CERTIFICATE_HOST=http://$CERT_HOST_IP:8880
- IPV8_HOST=http://$CERT_HOST_IP
depends_on:
- waardepapieren-service
ports:
- 443:443
- 8880:8880
healthcheck:
test: service nginx status
volumes:
- ./haarlem-frontend/nginx/certs:/etc/nginx/certs:ro
mock-nlx:
build: mock-nlx/
ports:
- 80:80
networks:
default:
name: waardepapieren