-
Notifications
You must be signed in to change notification settings - Fork 8
/
docker-compose.yml
78 lines (73 loc) · 1.84 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
66
67
68
69
70
71
72
73
74
75
76
77
78
version: "3.7"
services:
wiremock:
image: up9inc/wiremock-studio:2.32.0-18
ports:
- "9000"
# FBS
- "8100"
# Publizon
- "8110"
# CMS
- "8120"
volumes:
- wiremock_data:/home/wiremock
environment:
VIRTUAL_HOST: dpl-mock.docker
VIRTUAL_PORT: 9000
wiremock-fbs:
image: wiremock/wiremock:2.32.0
command: "--enable-stub-cors --global-response-templating" # Enable automatic sending of cross-origin (CORS) response headers.
ports:
- "8080"
volumes:
- wiremock_fbs_data:/home/wiremock
environment:
VIRTUAL_HOST: fbs-mock.docker
VIRTUAL_PORT: 8080
wiremock-publizon:
image: wiremock/wiremock:2.32.0
command: "--enable-stub-cors --global-response-templating" # Enable automatic sending of cross-origin (CORS) response headers.
ports:
- "8080"
volumes:
- wiremock_publizon_data:/home/wiremock
environment:
VIRTUAL_HOST: publizon-mock.docker
VIRTUAL_PORT: 8080
wiremock-cms:
image: wiremock/wiremock:2.32.0
command: "--enable-stub-cors --global-response-templating" # Enable automatic sending of cross-origin (CORS) response headers.
ports:
- "8080"
volumes:
- wiremock_cms_data:/home/wiremock
environment:
VIRTUAL_HOST: cms-mock.docker
VIRTUAL_PORT: 8080
volumes:
root:
driver_opts:
type: none
device: $PWD
o: bind
wiremock_data:
driver_opts:
type: none
device: $PWD/.docker/wiremock
o: bind
wiremock_fbs_data:
driver_opts:
type: none
device: $PWD/.docker/wiremock/fbs
o: bind
wiremock_publizon_data:
driver_opts:
type: none
device: $PWD/.docker/wiremock/publizon
o: bind
wiremock_cms_data:
driver_opts:
type: none
device: $PWD/.docker/wiremock/cms
o: bind