Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 675 Bytes

README.md

File metadata and controls

26 lines (21 loc) · 675 Bytes

Site built with using Jekyll.

Use docker to start web site from this repo locally.

  1. Build site and cache dependencies into local directory:
docker run --rm \
	--volume="$PWD:/srv/jekyll" \
	--volume="$PWD/vendor/bundle:/usr/local/bundle" \
	-it jekyll/jekyll:3.8 \
	jekyll build
  1. Start site on port 4000:
docker run --rm \
	--volume="$PWD:/srv/jekyll" \
	--volume="$PWD/vendor/bundle:/usr/local/bundle" \
	-p 4000:4000 \
	-it jekyll/jekyll:3.8 \
	jekyll serve
  1. Go to http://your-ip-address:4000 in browser.