Docker Hub: https://registry.hub.docker.com/r/lopezs/jekyll/
Navigate to jekyll website root and run
$ docker run --rm -v "$PWD:/srv/jekyll" -p 4000:4000 lopezs/jekyll
View site at http://localhost:4000
OR run as a background daemon:
$ docker run -d -v "$PWD:/srv/jekyll" -p 4000:4000 lopezs/jekyll
By default jekyll is invoked with the command serve -H 0.0.0.0, which you can override, e.g.
$ docker run "$PWD:/srv/jekyll" lopezs/jekyll new .
$ docker run "$PWD:/srv/jekyll" lopezs/jekyll build
Do whatever you like
Content type
Image
Digest
Size
301 MB
Last updated
almost 10 years ago
docker pull lopezs/jekyll