paulbrodner.github.io

My Personal Blog https://paulbrodner.github.io

run everithing in Docker

  • 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