Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 500 Bytes

README.md

File metadata and controls

17 lines (12 loc) · 500 Bytes

JDA Tech Blog

Run jekyll build in docker

export JEKYLL_VERSION=3.8
docker run --rm --volume="$PWD:/srv/jekyll" --volume="$PWD/vendor/bundle:/usr/local/bundle" -it jekyll/jekyll:$JEKYLL_VERSION  jekyll build

Serving an existing site

export JEKYLL_VERSION=3.8
docker run --name jda-tech-blog --volume="$PWD:/srv/jekyll" --volume="$PWD/vendor/bundle:/usr/local/bundle" -p 4000:4000 -it jekyll/jekyll:$JEKYLL_VERSION jekyll serve --watch --drafts