-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
59 lines (53 loc) · 936 Bytes
/
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
version: '2.3'
services:
server:
build:
context: .
dockerfile: containers/Dockerfile
ports:
- 5001:5001
links:
- redis
- mock_config
environment:
RUST_LOG: steward=INFO
envoy:
build:
context: containers
dockerfile: envoy.Dockerfile
links:
- server
- httpbin
working_dir: /app
ports:
- 9901:9901
- 80:8080
expose:
- 9901
- 80
environment:
ENVOY_UID: '0'
httpbin:
image: kennethreitz/httpbin
redis:
image: redis
ports:
- 6379:6379
expose:
- 6379
tavern:
build:
context: containers
dockerfile: tavern.Dockerfile
volumes:
- ./test-reports:/proj/test-reports:delegated
links:
- envoy
mock_config:
build:
context: containers
dockerfile: mock_config.Dockerfile
ports:
- 8000:8000
expose:
- 8000