-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
41 lines (36 loc) · 876 Bytes
/
docker-compose.yaml
File metadata and controls
41 lines (36 loc) · 876 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
version: "3.9"
services:
gateway:
build:
context: ./gateway
dockerfile: Dockerfile.dev
volumes:
- ~/Desktop/map_insight/mapinsight_server/gateway/:/app
env_file:
- ./gateway/.env.dev
ports:
- '80:80'
search:
build:
context: ./search
dockerfile: Dockerfile.dev
volumes:
- ~/Desktop/map_insight/mapinsight_server/search/:/app
env_file:
- ./search/.env.dev
insights:
build:
context: ./insights
dockerfile: Dockerfile.dev
volumes:
- ~/Desktop/map_insight/mapinsight_server/insights/:/app
env_file:
- ./insights/.env.dev
notifications:
build:
context: ./notifications
dockerfile: Dockerfile.dev
volumes:
- ~/Desktop/map_insight/mapinsight_server/notifications/:/app
env_file:
- ./notifications/.env.dev