texlive

中文版

Customized TeX Live Docker images for LaTeX compilation. Available in both Debian and Alpine variants.

DockerHub Image

Why This Image?

This Docker image ensures that you can compile LaTeX documents locally even when you cannot connect to Overleaf. It provides a consistent and reproducible environment for LaTeX compilation, including all necessary packages and tools.

Available Tags

Tag Base TeX Live Description
latest Alpine 3.23 2025 Alias for alpine-science
Alpine      
alpine-base Alpine 3.23 2025 Core LaTeX + LuaTeX + XeTeX + biber
alpine-science Alpine 3.23 2025 + science/math/fonts packages
alpine-base-cn Alpine 3.23 2025 Base + Chinese (ctex, xeCJK, CJKutf8)
alpine-science-cn Alpine 3.23 2025 Science + Chinese
alpine-base-jp Alpine 3.23 2025 Base + Japanese (luatexja, platex, uplatex)
alpine-science-jp Alpine 3.23 2025 Science + Japanese
alpine-base-kr Alpine 3.23 2025 Base + Korean (kotex, nanumtype1)
alpine-science-kr Alpine 3.23 2025 Science + Korean
Debian      
debian-base / base Debian bookworm 2022 Core LaTeX + LuaTeX + XeTeX + biber
debian-science / science Debian bookworm 2022 + science/math/fonts packages
debian-base-cn / base-cn Debian bookworm 2022 Base + Chinese
debian-science-cn / science-cn Debian bookworm 2022 Science + Chinese
debian-base-jp / base-jp Debian bookworm 2022 Base + Japanese
debian-science-jp / science-jp Debian bookworm 2022 Science + Japanese
debian-base-kr / base-kr Debian bookworm 2022 Base + Korean
debian-science-kr / science-kr Debian bookworm 2022 Science + Korean

Each language variant installs the language-specific TeX packages for that country. CN/JP/KR images are independently built with different contents.

Features

How to Use with VSCode LaTeX Workshop

Prerequisites

  1. Install Docker.
  2. Install the LaTeX Workshop extension in VSCode.

Configuration

Add the following settings to your settings.json in VSCode to use the Docker image for LaTeX compilation:

"latex-workshop.docker.enabled": true,
"latex-workshop.docker.image.latex": "oaklight/texlive:latest",
"latex-workshop.latex.clean.subfolder.enabled": true,
"latex-workshop.latex.recipes": [
  {
    "name": "latexmk",
    "tools": [
      "latexmk"
    ]
  }
],
"latex-workshop.latex.tools": [
  {
    "name": "latexmk",
    "command": "latexmk",
    "args": [
      "-synctex=1",
      "-interaction=nonstopmode",
      "-file-line-error",
      "-lualatex",
      "-outdir=%OUTDIR%",
      "%DOC%"
    ],
    "env": {}
  }
],
"latex-workshop.latex.autoBuild.run": "onSave",
"latex-workshop.latex.clean.method": "glob"

Steps

  1. Pull the Docker image:
docker pull oaklight/texlive:latest
  1. Open your LaTeX project in VSCode.
  2. Save your settings.json with the above configuration.
  3. Open a .tex file and start editing. The LaTeX Workshop extension will automatically use the Docker image for compilation.

Building Locally

Debian images

make build

Alpine images

make alpine-build

Using mirrors (for users in China)

make alpine-build REGISTRY_MIRROR=docker.1ms.run APK_MIRROR=mirrors.tuna.tsinghua.edu.cn

Pushing images

make push-all    # push both Debian and Alpine
make push        # push Debian only
make alpine-push # push Alpine only

Cleaning up

make clean-all   # remove all images
make clean       # remove Debian images only
make alpine-clean # remove Alpine images only

Run make help for a full list of targets and variables.

Supported LaTeX Features

Troubleshooting

License

This project is licensed under the MIT License. See the LICENSE file for details.