Jesper Hess
30a954ff4d
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.
10 lines
183 B
YAML
10 lines
183 B
YAML
|
|
jekyll:
|
|
image: jekyll/jekyll
|
|
command: jekyll serve --livereload --reload_port 35729
|
|
ports:
|
|
- 4000:4000
|
|
- 35729:35729
|
|
volumes:
|
|
- .:/srv/jekyll
|