Skip to content
Snippets Groups Projects
Chris Stevens's avatar
Chris Stevens authored
Change instructions to download powerline from git instead of pypi.  The latest release of powerline can handle 'next' in the tmux version string
ead1ebd4
History

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