-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
40 lines (36 loc) · 792 Bytes
/
Copy pathdocker-compose.yaml
File metadata and controls
40 lines (36 loc) · 792 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
version: '1'
services:
predictiveModule:
image: predictive_image
environment:
- NVIDIA_VISIBLE_DEVICES=all
volumes:
- ../PredictiveModule:/root/PredictiveModule
networks:
- predictiveModuleNetwork
depends_on:
- mongodb
deploy:
resources:
reservations:
devices:
- driver: nvidia
capabilities: [gpu]
mongodb:
image: mongo:7.0.2
ports:
- "27017:27017"
networks:
- predictiveModuleNetwork
command: mongod --bind_ip_all
portainer:
image: portainer/portainer-ce
ports:
- "9000:9000"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
networks:
- predictiveModuleNetwork
networks:
predictiveModuleNetwork:
driver: bridge