forked from data.coop/website
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:
parent
46d92e5c2c
commit
65972b8226
8
docker-compose.yml
Normal file
8
docker-compose.yml
Normal 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
|
Loading…
Reference in a new issue