Skip to content
This repository has been archived by the owner on Aug 15, 2024. It is now read-only.

Latest commit

 

History

History
34 lines (25 loc) · 544 Bytes

README.md

File metadata and controls

34 lines (25 loc) · 544 Bytes

miktex-docker-stable

Docker Image to run tex files anywhere with miktex based on Ubuntu 20.04 and working on Linux/Windows/MacOS

Install

Pull

docker pull pablogod/miktex-safe

or build from source

docker build --tag pablogod/miktex-safe .

Create volume

docker volume create --name miktex

Run Docker

docker run --rm -ti \
  -v miktex:/miktex/.miktex \
  -v $(pwd):/miktex/work \
  -e MIKTEX_GID=$(id -g) \
  -e MIKTEX_UID=$(id -u) \
  pablogod/miktex-safe \
  pdflatex main.tex