forked from ulovliglogning/ulovliglogning.dk
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:
parent
70a2357283
commit
30a954ff4d
9
docker-compose.yml
Normal file
9
docker-compose.yml
Normal file
|
@ -0,0 +1,9 @@
|
|||
|
||||
jekyll:
|
||||
image: jekyll/jekyll
|
||||
command: jekyll serve --livereload --reload_port 35729
|
||||
ports:
|
||||
- 4000:4000
|
||||
- 35729:35729
|
||||
volumes:
|
||||
- .:/srv/jekyll
|
Loading…
Reference in a new issue