-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
31 lines (31 loc) · 944 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
31 lines (31 loc) · 944 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
version: "3.4"
services:
energymanager:
build:
context: "."
dockerfile: "./Dockerfile"
privileged: true
deploy:
resources:
reservations:
devices:
- driver: nvidia
count: 1
capabilities: [ gpu ]
restart: "unless-stopped"
ports:
- "2222:22"
volumes:
- "./:/EnergyManager"
- "/mnt/54677e5c-47a2-4c09-b0f6-953df15410d0/UvA/Scriptie/Benchmark/rodinia_3.1:/applications/rodinia"
- "/mnt/54677e5c-47a2-4c09-b0f6-953df15410d0/UvA/Scriptie/Benchmark/NVIDIA-developer-blog:/applications/nvidia-developer-blog"
- "/mnt/54677e5c-47a2-4c09-b0f6-953df15410d0/UvA/Scriptie/Benchmark/Jacobi/CudaJacobi:/applications/jacobi"
energymanager-visualizer:
build:
context: "."
dockerfile: "./Visualizer/Dockerfile"
restart: "unless-stopped"
ports:
- "8888:8888"
volumes:
- "./:/EnergyManager"