-
Notifications
You must be signed in to change notification settings - Fork 102
/
Copy pathdocker-compose.yml
43 lines (38 loc) · 1.04 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
version: '3.4'
services:
mdcv-pdf:
image: markdowncv
build:
context: .
dockerfile: ./Dockerfile
command: -s -f markdown-auto_identifiers source/cv.md -o output/cv.pdf --template source/style/template.tex --pdf-engine=xelatex
volumes:
- ./source:/data/source
- ./output:/data/output
mdcv-tex:
image: markdowncv
build:
context: .
dockerfile: ./Dockerfile
command: -s source/cv.md -o output/cv.tex --template source/style/template.tex --pdf-engine=xelatex
volumes:
- ./source:/data/source
- ./output:/data/output
mdcv-docx:
image: markdowncv
build:
context: .
dockerfile: ./Dockerfile
command: source/cv.md -o output/cv.docx
volumes:
- ./source:/data/source
- ./output:/data/output
mdcv-html:
image: markdowncv
build:
context: .
dockerfile: ./Dockerfile
command: source/cv.md -o output/cv.html
volumes:
- ./source:/data/source
- ./output:/data/output