https://github.com/nevermendel/docker-texlive-xetex
Docker image based on Ubuntu with texlive-xetex
https://github.com/nevermendel/docker-texlive-xetex
docker docker-image latex texlive-xetex
Last synced: about 2 months ago
JSON representation
Docker image based on Ubuntu with texlive-xetex
- Host: GitHub
- URL: https://github.com/nevermendel/docker-texlive-xetex
- Owner: NeverMendel
- License: mit
- Created: 2021-11-15T16:22:50.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-06-18T09:08:29.000Z (about 2 years ago)
- Last Synced: 2025-07-07T03:10:56.921Z (12 months ago)
- Topics: docker, docker-image, latex, texlive-xetex
- Language: Dockerfile
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# docker-texlive-xetex
Docker image based on Ubuntu with texlive-xetex.
## What's inside
This Docker image contains `make`, `texlive-xetex` and `git`.
You can install additional packages with `apt install`.
## Pull the image
First pull the image either from Docker Hub or the GitHub Docker repository.
- To pull the image from Docker Hub run:
```
docker pull nevermendel/docker-texlive-xetex
```
- To pull the image from the GitHub Docker run:
```
docker pull ghcr.io/nevermendel/docker-texlive-xetex
```
## Run the image
You can choose whether you prefer to use the image interactively or not.
### Interactively
Start an instance of the image interactively by changing the entry point to `/bin/bash`:
```
docker run -it --entrypoint=/bin/bash -v $(pwd):/usr/app --rm nevermendel/docker-texlive-xetex
```
Then run XeLaTex to compile your files by executing `xelatex file.tex`
### Not interactively
Run the following command:
```
docker run -it -v $(pwd):/usr/app --rm nevermendel/docker-texlive-xetex "xelatex file.tex"
```
## License
[MIT License](LICENSE)