A shell helper for dokyll

TL;DR

A helper shell script for dokyll.

In Jekyll in Docker we took a look at dokyll, my little packaging of Jekyll in a Docker image. It just seemed right to pack the shell commands in a script:

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
#!/bin/sh

multiconfig='--config _config.yml,_local_config.yml'
md="$(dirname "$(readlink -f "$0")")"
cachedir="$md/_bundle"

dokyll() {
   docker run --rm \
      -v "$md:/mnt" \
      -v "$cachedir:/usr/local/bundle" \
      $DOKYLL_PRE \
      registry.gitlab.com/polettix/dokyll \
      "$@"
}

case "$1" in

   (cache)
      rm -rf "$cachedir"
      mkdir -p "$cachedir"
      DOKYLL_PRE='' dokyll bundle install
      exit $?
      ;;

   (build)
      DOKYLL_PRE='' dokyll bundle exec jekyll build $multiconfig --watch
      exit $?
      ;;

   (serve)
      DOKYLL_PRE='-p 4000:4000' dokyll bundle exec jekyll serve \
         $multiconfig --no-watch --skip-initial-build --host=0.0.0.0
      exit $?
      ;;

   (*)
      cat <<EOF
"$0" [cache|build|serve)

cache: create _bundle cache (only needed once)
build: continuously build site as changes arise
serve: serve built site
EOF
      exit 1;
      ;;

esac

There is little to add, actually. One interesting thing might be that I’m leveraging a couple of config.yml files for the local deployment, so that I can override a few variables; this is why the environment variable multiconfig is set to the specific value in line 3.

That’s all!


Comments? Octodon, , GitHub, Reddit, or drop me a line!