diff --git a/jekyll.sh b/jekyll.sh new file mode 100755 index 0000000..cda25f6 --- /dev/null +++ b/jekyll.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +export JEKYLL_VERSION=4.2.0 +docker run --rm \ + --volume="$PWD:/srv/jekyll" \ + -p 127.0.0.1:4000:4000/tcp \ + -it jekyll/jekyll:$JEKYLL_VERSION \ + jekyll $@