jekyll

jekyll

A docker image for building Jekyll websites

A docker image for building Jekyll websites

# Replace "/home/user/jekyll" with the location of your Jekyll site source files

chmod -R o+rwX /home/user/jekyll/_site

docker run \
    -v /home/user/jekyll:/opt/build \
    -v /home/user/jekyll/_site:/opt/_site \
    ghcr.io/jamesjj/jekyll:main \
    /bin/sh -c "bundle exec jekyll build -s /opt/build -d /opt/_site --disable-disk-cache --strict_front_matter --trace"