mirror of
https://github.com/jgthms/bulma.git
synced 2024-11-14 11:14:24 +00:00
14 lines
300 B
YAML
14 lines
300 B
YAML
|
# run jekyll with docker container
|
||
|
#
|
||
|
# install docker && docker-compose
|
||
|
# https://docs.docker.com/compose/install/
|
||
|
# then run docker-compose up
|
||
|
|
||
|
jekyll:
|
||
|
image: jekyll/jekyll:pages
|
||
|
command: jekyll serve --watch --incremental
|
||
|
ports:
|
||
|
- 4000:4000
|
||
|
volumes:
|
||
|
- .:/srv/jekyll
|