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 --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
Size
167.9 MB
Last updated
over 6 years ago
docker pull driller/sphinx-requirements:requirements