awesome-django/docker-compose.yml
2022-01-24 09:58:21 -06:00

23 lines
446 B
YAML

version: "3"
services:
devd:
image: ghcr.io/jefftriplett/devd:latest
command: --livewatch
ports:
- 8000:8000
volumes:
- .:/srv/jekyll
# - ./_site:/static
jekyll:
image: jekyll/jekyll:latest
command: jekyll serve --drafts --force_polling --watch --port 4000
expose: [4000]
ports:
- 4000:4000
volumes:
- ./.vendor/bundle:/usr/local/bundle:cached
- .:/srv/jekyll:cached