crazy-toads.github.io/docker-compose.yml

12 lines
226 B
YAML
Raw Permalink Normal View History

2018-12-01 13:18:09 +00:00
version: '3'
services:
jekyll:
2018-12-21 19:44:55 +00:00
environment:
- JEKYLL_ENV=docker
2019-09-11 06:53:22 +00:00
image: jekyll/jekyll:4.0.0
2018-12-01 13:18:09 +00:00
volumes:
- ".:/srv/jekyll"
ports:
- "4000:4000"
2018-12-21 19:44:55 +00:00
command: jekyll serve --config _devconfig.yml