A Dockerfile is included to build & host the html with the ReadTheDocs Theme locally. The docker container runs sphinx-autobuild which automatically watches for changes so you don't have to manually rebuild everytime you change something.
Build the image:
docker build --tag=pickit-docs .
Run the docker container:
docker run -it --rm -p 8080:8080 --name pickit-docs -v $PWD/docs:/docs pickit-docs
You can now access the documentation at http://localhost:8080.
If you want to get the static html files, you can copy them from the running container:
docker cp pickit-docs:/home/python/_build/html /tmp/
The errors of the build process are printed on the screen.