Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 649 Bytes

README.md

File metadata and controls

16 lines (11 loc) · 649 Bytes

GitHub release (latest SemVer) GitHub Workflow Status

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"