11 lines
214 B
YAML
11 lines
214 B
YAML
version: "3"
|
|
|
|
services:
|
|
jekyll:
|
|
image: jekyll/jekyll
|
|
ports:
|
|
- "4000:4000"
|
|
command: jekyll serve --watch --host "0.0.0.0" --config _config.yml,_config.dev.yml
|
|
volumes:
|
|
- .:/srv/jekyll
|
|
|