My Personal Blog https://paulbrodner.github.io
- build the image
docker build -t pbrodner-site .
- run the image
this will have a shared volume from host to container, so we can update the site automatically
docker run -v ${PWD}:/site -it -p 4000:4000 pbrodner-site
- view site under: http://127.0.0.1:4000