A comprehensive devcontainer base image for academic paper and presentation writing with LaTeX.
There are multiple alternative ways to use this image:
-
(Recommended) Add a reference to this image in your
devcontainer.json
:{ "image": "ghcr.io/giacomolanciano/devcontainer-latex:<VERSION>", ... }
-
Use it as a base image for your own
Dockerfile
:FROM ghcr.io/giacomolanciano/devcontainer-latex:<VERSION> ...
-
Use it as-is:
$ docker pull ghcr.io/giacomolanciano/devcontainer-latex:<VERSION> ... $ docker run -it \ -u vscode -e UID=$(id -u) \ -e GID=$(id -g) \ -v </PATH/TO/LATEX/PROJECT>:/workspaces/<LATEX-PROJECT-NAME> \ -w /workspaces/<LATEX-PROJECT-NAME> \ --name <CONTAINER-NAME> \ ghcr.io/giacomolanciano/devcontainer-latex:<VERSION> \ bash
Check PaperOps to see a usage example.
Maintained by Giacomo Lanciano.
Distributed under the MIT License.