-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
61 lines (52 loc) · 1.23 KB
/
docker-compose.yml
File metadata and controls
61 lines (52 loc) · 1.23 KB
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
version: '3.9'
services:
navigation:
build:
context: ./navigation
container_name: navigation
restart: unless-stopped
network_mode: host
crowdsourcing:
build:
context: ./crowdsourcing
container_name: crowdsourcing
restart: unless-stopped
network_mode: host
environment:
- SERVICE_SERVICE_PROTO_PORT=8001
aggregation:
build:
context: ./crowdsourcing
dockerfile: Dockerfile.aggregation
container_name: aggregation
restart: always
network_mode: host
environment:
- AGGREGATION_OSM_PBF_URL=http://localhost:80/iran.osm.pbf
auth:
build:
context: ./auth
container_name: auth
restart: unless-stopped
network_mode: host
osrm:
image: hamirho/osrm:trafficless
container_name: osrm
restart: unless-stopped
network_mode: host
redis:
image: redis:7.2.8-alpine
container_name: redis
restart: unless-stopped
network_mode: host
file-server:
image: nginx:alpine
volumes:
- ./map-viewer:/usr/share/nginx/html:ro
network_mode: host
crowdsourcing-ui:
build:
context: ./crowdsourcing-simulator
container_name: crowdsourcing-ui
restart: unless-stopped
network_mode: host