forked from envoyproxy/examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yaml
40 lines (36 loc) · 868 Bytes
/
docker-compose.yaml
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
services:
tls-inspector:
build:
context: .
dockerfile: ../shared/envoy/Dockerfile
depends_on:
service-https-http2:
condition: service_started
service-https-http1.1:
condition: service_started
service-http:
condition: service_started
ports:
- "${PORT_PROXY:-10000}:10000"
- "${PORT_ADMIN:-12345}:12345"
service-https-http2:
build:
context: .
dockerfile: ../shared/echo2/Dockerfile
hostname: service-https-http2
environment:
- HTTP_PORT=0
service-https-http1.1:
build:
context: .
dockerfile: ../shared/echo2/Dockerfile
hostname: service-https-http1.1
environment:
- HTTP_PORT=0
service-http:
build:
context: .
dockerfile: ../shared/echo2/Dockerfile
hostname: service-http
environment:
- HTTPS_PORT=0