Docker image for Sphinx build.
.. note:: tk0miya/sphinx-pdf contains TeXLive packages. So the image is very large (over 2GB!).
Build HTML document::
$ docker run --rm -v /path/to/document:/docs tk0miya/sphinx-html
Build EPUB document::
$ docker run --rm -v /path/to/document:/docs tk0miya/sphinx-epub
Build PDF document::
$ docker run --rm -v /path/to/document:/docs tk0miya/sphinx-pdf
If you would like to install dependencies, use tk0miya/sphinx-base as a base image::
FROM tk0miya/sphinx-base
WORKDIR /docs ADD requirements.txt /docs RUN pip3 install -r requirements.txt CMD make html
Content type
Image
Digest
Size
268.9 MB
Last updated
over 6 years ago
docker pull tk0miya/sphinx-base