-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
49 lines (44 loc) · 838 Bytes
/
docker-compose.yaml
File metadata and controls
49 lines (44 loc) · 838 Bytes
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
version: "3.7"
services:
front-envoy:
build:
context: ./front-envoy-proxy
dockerfile: Dockerfile
networks:
- envoymesh
ports:
- "8000:80"
- "8001:8001"
- "8443:443"
service1:
build:
context: ./simpleexpressapi1
dockerfile: Dockerfile
networks:
envoymesh:
aliases:
- service1
expose:
- "80"
service2:
build:
context: ./simpleexpressapi2
dockerfile: Dockerfile
networks:
envoymesh:
aliases:
- service2
expose:
- "80"
service3:
build:
context: ./simpleexpressapi3
dockerfile: Dockerfile
networks:
envoymesh:
aliases:
- service3
expose:
- "8080"
networks:
envoymesh: {}