Last active
August 28, 2019 09:31
-
-
Save deanturpin/e76991fd2fc045628ef51bcddd1116e1 to your computer and use it in GitHub Desktop.
Building a Jekyll site using Docker on a local dir
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
``` | |
cd my-jekyll-site | |
sudo docker run -it -p 4000:4000 --rm --entrypoint /bin/bash -v $PWD:/srv/jekyll jekyll/jekyll | |
jekyll serve | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment