docs.cstevens.io
Personal notes powered by Sphinx docs
Build the sphinx container
docker build . -t sphinx -f Dockerfile.sphinx
Build the docs
docker run --rm -v ${PWD}:/docs sphinx:latest sphinx-build --color -a -v -b html source public
Run a webserver on port 8000
docker run --rm -p 8000:80 -v ${PWD}/public:/usr/share/nginx/html nginx