-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdocker-compose.yml
84 lines (79 loc) · 1.58 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
version: '3.7'
services:
analysis-job:
build:
context: ./
dockerfile: ./docker/analysisJobDockerfile
container_name: analysisJobContainer
networks:
- default
ports:
- 8085:8082
volumes:
- shared-data:/app/storage
- log-data:/app/log
environment:
STAGE: dev
env_file:
- ./metaPro-config.env
command: tail -f /dev/null
download-dms-data:
build:
context: ./
dockerfile: ./docker/dmsDataDownloadDockerfile
container_name: downloadDMSDataContainer
networks:
- default
ports:
- 8083:8082
volumes:
- shared-data:/app/storage
- log-data:/app/log
environment:
STAGE: dev
env_file:
- ./metaPro-config.env
tty: true
post-processing:
build:
context: ./
dockerfile: ./docker/postProcessingDockerfile
container_name: postProcessingContainer
networks:
- default
ports:
- 8084:8082
volumes:
- shared-data:/app/storage
- log-data:/app/log
environment:
STAGE: dev
env_file:
- ./metaPro-config.env
tty: true
mongo-db:
restart: always
image: mongo:latest
container_name: mongoDbContainer
networks:
- default
volumes:
- db-volume:/data/db
ports:
- 27017:27017
env_file:
- ./metaPro-config.env
volumes:
shared-data:
driver: local
driver_opts:
o: bind
type: none
device: /mnt/NMDC_proposal/storage
log-data:
driver: local
driver_opts:
o: bind
type: none
device: ./logs
db-volume: