Docker image for Sphinx build.
100K+
Docker images for Sphinx.
Note:
sphinxdoc/sphinx-latexpdf contains TeXLive packages. So the image is very large (over 2GB!).
Create a Sphinx project::
$ docker run -it --rm -v /path/to/document:/docs sphinxdoc/sphinx sphinx-quickstart
Build HTML document::
$ docker run --rm -v /path/to/document:/docs sphinxdoc/sphinx make html
Build EPUB document::
$ docker run --rm -v /path/to/document:/docs sphinxdoc/sphinx make epub
Build PDF document::
$ docker run --rm -v /path/to/document:/docs sphinxdoc/sphinx-latexpdf make latexpdf
If you would like to install dependencies, use sphinxdoc/sphinx as a base image::
# in your Dockerfile
FROM sphinxdoc/sphinx
WORKDIR /docs
ADD requirements.txt /docs
RUN pip3 install -r requirements.txt
Content type
Image
Digest
sha256:8fc7894c1…
Size
1.2 GB
Last updated
over 1 year ago
docker pull sphinxdoc/sphinx-latexpdfPulls:
1,530
Jul 27 to Aug 2