Sphinx documentation with livereload.
1.1K
This repos is sphinx-autobuild Dockerfile.
type docker run directly:
$ docker run -it -p 8000:8000 -v $PWD:/document sshd/sphinx-autobuild sphinx-autobuild -H 0.0.0.0 -b html -d build/doctrees source build/html
or create shellscript and type ./autobuild:
cd the document's root dir, and create following file named autobuild.
#!/bin/bash docker run -it -p 8000:8000 -v $PWD:/document sshd/sphinx-autobuild sphinx-autobuild -H 0.0.0.0 -b html -d build/doctrees source build/html
then run.
$ ./autobuild
Sphinx is documentation generator. see the official document.
Content type
Image
Digest
Size
284.3 MB
Last updated
over 9 years ago
docker pull sshd/sphinx-autobuild