Skip to content
/ jekyll Public

A docker image for building Jekyll websites

Notifications You must be signed in to change notification settings

JamesJJ/jekyll

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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"