Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 573 Bytes

README.md

File metadata and controls

31 lines (22 loc) · 573 Bytes

Personal website

This is my personal websites. You can visit it at romain.soufflet.io

This site is powered by Jekyll

Build a local version

docker run \
  --rm \
  --volume="${PWD}:/srv/jekyll" \
  --name jekyll_watch \
  -dt jekyll/jekyll \
  ./start.sh

You can start a simple webserver to serve the content of _site directory

docker run \
  -p 9000:80 \
  --name romain.soufflet.io \
  --volume ${PWD}/_site:/usr/share/nginx/html:ro \
  -d nginx

And access it on http://localhost:9000