-
Notifications
You must be signed in to change notification settings - Fork 14
/
docker-compose.yml
65 lines (57 loc) · 1.49 KB
/
docker-compose.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
services:
datastore:
image: knarz/datastore-emulator
networks:
- eq-env
redis:
image: redis:4
networks:
- eq-env
eq-questionnaire-runner:
image: onsdigital/eq-questionnaire-runner:latest
build: ./
env_file:
- ${RUNNER_ENV_FILE}
environment:
DATASTORE_EMULATOR_HOST: datastore:8432
EQ_REDIS_HOST: "redis"
SDS_API_BASE_URL: http://sds:5003
CIR_API_BASE_URL: http://cir:5004
restart: always
depends_on:
- datastore
- redis
networks:
- eq-env
ports:
- "5000:5000"
eq-questionnaire-launcher:
image: onsdigital/eq-questionnaire-launcher:latest
environment:
SURVEY_RUNNER_URL: http://localhost:5000
SURVEY_RUNNER_SCHEMA_URL: http://eq-questionnaire-runner:5000
SDS_API_BASE_URL: http://sds:5003
restart: always
depends_on:
- eq-questionnaire-runner
networks:
- eq-env
ports:
- "8000:8000"
sds:
image: onsdigital/eq-runner-mock-sds:latest
networks:
- eq-env
restart: always
ports:
- "5003:5003"
cir:
image: onsdigital/eq-runner-mock-cir:latest
networks:
- eq-env
restart: always
ports:
- "5004:5004"
networks:
eq-env:
driver: bridge