forked from Kong/KongAir
-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose-arm-64.yaml
61 lines (56 loc) · 1.25 KB
/
docker-compose-arm-64.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
networks:
kong-edu-net:
name: kong-edu-net
driver: bridge
external: false
services:
kongair-experience:
image: kongedu/kongair-experience:1.0
platform: ${PLATFORM:-linux/amd64}
container_name: kongair-experience
hostname: experience.kongair
restart: on-failure
networks:
- kong-edu-net
ports:
- 5050:4000
kongair-customers:
image: kongedu/kongair-customers:1.0
platform: ${PLATFORM:-linux/amd64}
container_name: kongair-customers
hostname: customers.kongair
restart: on-failure
networks:
- kong-edu-net
ports:
- 5051:3000
kongair-flights:
image: kongedu/kongair-flights:1.0
platform: ${PLATFORM:-linux/amd64}
container_name: kongair-flights
hostname: flights.kongair
restart: on-failure
networks:
- kong-edu-net
ports:
- 5052:8080
kongair-routes:
image: kongedu/kongair-routes:1.0
platform: ${PLATFORM:-linux/amd64}
container_name: kongair-routes
hostname: routes.kongair
restart: on-failure
networks:
- kong-edu-net
ports:
- 5053:8080
kongair-bookings:
image: kongedu/kongair-bookings:1.0
platform: ${PLATFORM:-linux/amd64}
container_name: kongair-bookings
hostname: bookings.kongair
restart: on-failure
networks:
- kong-edu-net
ports:
- 5054:3000