-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
49 lines (44 loc) · 823 Bytes
/
docker-compose.yml
File metadata and controls
49 lines (44 loc) · 823 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
version: '3.3'
services:
eureka:
build:
context: ./eureka
dockerfile: Dockerfile
image: eureka
container_name: eureka
ports:
- 8761:8761
network_mode: host
pricing:
build:
context: ./pricing
dockerfile: Dockerfile
depends_on:
- eureka
image: pricing
container_name: pricing
ports:
- 8082:8082
network_mode: host
boogle:
build:
context: ./maps
dockerfile: Dockerfile
image: boogle
container_name: boogle
ports:
- 9191:9191
network_mode: host
vehicles:
build:
context: ./vehicles
dockerfile: Dockerfile
depends_on:
- eureka
- boogle
- pricing
image: vehiclesapi
container_name: vehiclesapi
ports:
- 8080:8080
network_mode: host