-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdocker-compose.yml
41 lines (37 loc) · 1.07 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
version: '3.8'
services:
sawfish-datasets-extraction:
build:
context: .
dockerfile: datasets/Dockerfile
volumes:
- ./datasets:/datasets
image: sawfish-datasets-extraction:latest
container_name: sawfish-datasets-extraction
sawfish-result-generation:
build:
context: .
dockerfile: run_scripts/Dockerfile
volumes:
- ./results:/app/results
image: sawfish-result-generation:latest
container_name: sawfish-result-generation
sawfish-plot-generation:
build:
context: .
dockerfile: plot_generation/Dockerfile
volumes:
- ./paper_generation/figures:/app/paper_generation/figures
image: sawfish-plot-generation:latest
container_name: sawfish-plot-generation
sawfish-paper-generation:
build:
context: .
dockerfile: paper_generation/Dockerfile
volumes:
- ./final_paper:/usr/src/mytex/results
image: sawfish-paper-generation:latest
container_name: sawfish-paper-generation
entrypoint: []
command: >
sh -c "cp paperSINDsKaminsky.pdf results/"