-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
41 lines (40 loc) · 970 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
version: "3"
services:
osrm_india_map:
container_name: osrm_india_map
image: osrm_india_map
restart: always
ports:
- "5000:5000"
networks:
tsp_network:
aliases:
- osrm_india_map
tsp_solver:
container_name: tsp_solver
image: tsp_solver
restart: always
ports:
- "3000:3000"
depends_on:
- osrm_india_map
networks:
tsp_network:
aliases:
- tsp_solver
front_end:
container_name: front_end
image: front_end
restart: always
ports:
- "9966:9966"
depends_on:
- osrm_india_map
- tsp_solver
networks:
tsp_network:
aliases:
- front_end
networks:
tsp_network:
driver: bridge