Add docker-compose.yml to ease development

If you have docker and docker-compose installed, you can simply run
docker-compose up in the project directory to fire up the site inside
a Docker container.
This commit is contained in:
Jesper Hess 2017-02-06 13:29:43 +01:00
parent 46d92e5c2c
commit 65972b8226
Signed by untrusted user: graffen
GPG Key ID: 351A89E40D763F0F
1 changed files with 8 additions and 0 deletions

8
docker-compose.yml Normal file
View File

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