Add docker-compose file

Just to make it easier to do development without installing all the jekyll stuff yourself.

All you need is docker+docker-compose and run 'docker-compose up' in the root of the project.
This commit is contained in:
Jesper Hess 2018-01-22 16:34:17 -08:00
parent 70a2357283
commit 30a954ff4d
Signed by untrusted user: graffen
GPG Key ID: 351A89E40D763F0F
1 changed files with 9 additions and 0 deletions

9
docker-compose.yml Normal file
View File

@ -0,0 +1,9 @@
jekyll:
image: jekyll/jekyll
command: jekyll serve --livereload --reload_port 35729
ports:
- 4000:4000
- 35729:35729
volumes:
- .:/srv/jekyll