-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtexmlbus-edge-build.yml
68 lines (56 loc) · 1.89 KB
/
texmlbus-edge-build.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
# docker-compose.yml
version: '3.4'
services:
latexml_base_edge:
build:
# needs access to LaTeXML as well
context: docker
dockerfile: latexml_base_edge/Dockerfile
target: latexml_base_edge
args:
# Sometimes a job (e.g. latexml) may run endlessly, limit
# the amount of time a job can run.
TIMEOUT_SECONDS: 1200
# actually just image is needed, not the container
# will soon use profile: never
command: 'echo "Ok, that this container exits."'
latexml_git_edge:
build:
# needs access to modules
context: .
dockerfile: docker/latexml_git_edge/Dockerfile
target: latexml_git_edge
depends_on:
- latexml_base_edge
# actually just image is needed, not the container
# will soon use profile: never
command: 'echo "OK, that this container exits."'
# as it is not a submodule, directory already exists
#volumes:
#- ./.git/modules/src/LaTeXML:/.git
latexml_edge:
build:
context: docker/LaTeXML_edge
dockerfile: ../LaTeXML-Dockerfile_edge
#dockerfile: release/docker/Dockerfile
target: latexml_edge
args:
- WITH_TEXLIVE=yes
- WITH_TESTS=no
depends_on:
- latexml_git_edge
# actually just image is needed, not the container
# will soon use profile: never
command: 'echo "OK, that this container exits."'
latexml_dmake_edge:
build:
context: docker/latexml_dmake_edge
dockerfile: Dockerfile
target: latexml_dmake_edge
depends_on:
- latexml_edge
networks:
texmlbus_net:
volumes:
# shared by latexml-dmake and texmlbus
optrun: