This repository was archived by the owner on Nov 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathdocker-compose.development.yml
More file actions
121 lines (91 loc) · 1.7 KB
/
docker-compose.development.yml
File metadata and controls
121 lines (91 loc) · 1.7 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
version: '3.4'
# In development we want to expose the ports to the host machine on a predictable port.
# This allows for easier manual testing of the services
# On CI this is unnecessary and can cause conflicts between two builds wanting to use the same port.
services:
nginx-proxy:
ports:
- "80:80"
search-api:
ports:
- "33233:3233"
diet-error-handler:
ports:
- "33129:3129"
router:
ports:
- "33054:3054"
- "33055:3055"
draft-router:
ports:
- "33154:3154"
- "33155:3155"
router-api:
ports:
- "33056:3056"
draft-router-api:
ports:
- "33156:3156"
content-store:
ports:
- "33068:3068"
draft-content-store:
ports:
- "33100:3100"
publishing-api:
ports:
- "33093:3093"
specialist-publisher:
ports:
- "33064:3064"
collections:
ports:
- "33070:3070"
contacts-admin:
ports:
- "33051:3051"
finder-frontend:
ports:
- "33062:3062"
draft-collections:
ports:
- "33170:3170"
publisher:
ports:
- "33000:3000"
frontend:
ports:
- "33005:3005"
draft-frontend:
ports:
- "33105:3105"
whitehall-admin:
ports:
- "33020:3020"
whitehall-frontend:
ports:
- "33120:3020"
draft-whitehall-frontend:
ports:
- "33220:3020"
content-tagger:
ports:
- "33116:3116"
asset-manager:
ports:
- "33037:3037"
email-alert-api:
ports:
- "33088:3088"
static:
ports:
- "33013:3013"
draft-static:
ports:
- "33113:3113"
government-frontend:
ports:
- "33090:3090"
draft-government-frontend:
ports:
- "33190:3190"