Adding Jekyll container which includes very basic starter content

This commit is contained in:
Geoff Bourne
2014-06-29 22:44:51 +00:00
parent e4418b3767
commit ebb4ee2214
11 changed files with 94 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
This container is pre-configured according to the
[GitHub Pages use of Jekyll](https://help.github.com/articles/using-jekyll-with-pages).
It serves up the generated content on port 4000 and the site is generated from
the container's `/site` volume. You can either bring your own site content or
let it generate some VERY simple content along with the standard Jekyll directory
layout.
A typical way to run this:
docker run -it -p 4000:4000 -v $(pwd)/site:/site itzg/jekyll-github-pages
where either it will load your content or initialize the content under
`site` in your current working directory.