2021-08-31 16:50:07 +00:00
|
|
|
services:
|
2022-01-24 15:58:21 +00:00
|
|
|
|
|
|
|
devd:
|
|
|
|
image: ghcr.io/jefftriplett/devd:latest
|
|
|
|
command: --livewatch
|
2022-09-11 00:47:07 +00:00
|
|
|
expose:
|
|
|
|
- 8000
|
2023-07-22 20:14:11 +00:00
|
|
|
init: true
|
2022-01-24 15:58:21 +00:00
|
|
|
ports:
|
|
|
|
- 8000:8000
|
|
|
|
volumes:
|
|
|
|
- .:/srv/jekyll
|
|
|
|
|
2021-08-31 16:50:07 +00:00
|
|
|
jekyll:
|
|
|
|
image: jekyll/jekyll:latest
|
2022-01-24 15:58:21 +00:00
|
|
|
command: jekyll serve --drafts --force_polling --watch --port 4000
|
2022-09-11 00:47:07 +00:00
|
|
|
environment:
|
|
|
|
- BUNDLE_PATH=/usr/local/bundle
|
|
|
|
expose:
|
|
|
|
- 4000
|
2023-07-22 20:14:11 +00:00
|
|
|
init: true
|
2021-08-31 16:50:07 +00:00
|
|
|
ports:
|
2022-01-24 15:58:21 +00:00
|
|
|
- 4000:4000
|
2021-08-31 16:50:07 +00:00
|
|
|
volumes:
|
|
|
|
- .:/srv/jekyll:cached
|
2022-09-11 00:47:07 +00:00
|
|
|
- ./.vendor/bundle:/usr/local/bundle:cached
|