My personal site aleksandrgilfanov.github.io
Site built with using Jekyll.
Use docker to start web site from this repo locally.
- 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
- 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
- Go to http://your-ip-address:4000 in browser.