Created
May 5, 2017 08:43
-
-
Save riddla/8f3b313f45b6c49d7758f74ce170cb84 to your computer and use it in GitHub Desktop.
Develop Jekyll sites via Docker (and Jekyll::Livereload)
This file contains 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
version: '2' | |
services: | |
blog: | |
image: jekyll/jekyll | |
command: jekyll serve --livereload | |
ports: | |
- "4000:4000" | |
- "35729:35729" | |
volumes: | |
- .:/srv/jekyll |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment