-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
40 lines (38 loc) · 1.31 KB
/
docker-compose.yml
File metadata and controls
40 lines (38 loc) · 1.31 KB
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
services:
resume-glibc:
image: ethan605/texlive:minimal-glibc
build:
context: .
args:
- STDLIB=glibc
- TEXLIVE_RUNTIME_VARIANT=aarch64-linux
# List of available mirrors: https://ctan.org/mirrors
- CTAN_REPOSITORY=${CTAN_REPOSITORY:-https://mirror.ctan.org/systems/texlive/tlnet}
- TEXLIVE_INSTALL_VERSION=${TEXLIVE_INSTALL_VERSION:-2026}
- TEXLIVE_RUNTIME_VERSION=${TEXLIVE_RUNTIME_VERSION:-2026}
container_name: make_resume
command: ['xelatex', 'index.tex']
# tty: true
# command: ['tail', '-f', '/dev/null']
volumes:
- ./resume:/home/app/data
resume-musl:
image: ethan605/texlive:minimal-musl
platform: linux/amd64
build:
context: .
platforms:
- linux/amd64
args:
- STDLIB=musl
- TEXLIVE_RUNTIME_VARIANT=x86_64-linuxmusl
# List of available mirrors: https://ctan.org/mirrors
- CTAN_REPOSITORY=${CTAN_REPOSITORY:-https://mirror.ctan.org/systems/texlive/tlnet}
- TEXLIVE_INSTALL_VERSION=${TEXLIVE_INSTALL_VERSION:-2026}
- TEXLIVE_RUNTIME_VERSION=${TEXLIVE_RUNTIME_VERSION:-2026}
container_name: make_resume
command: ['xelatex', 'index.tex']
# tty: true
# command: ['tail', '-f', '/dev/null']
volumes:
- ./resume:/home/app/data