🚜 Updates compose

This commit is contained in:
Jeff Triplett
2024-10-24 21:33:21 -05:00
parent fc92b3280f
commit f1db3fafc9
3 changed files with 2 additions and 9 deletions

26
compose.yml Normal file
View File

@@ -0,0 +1,26 @@
services:
devd:
image: ghcr.io/jefftriplett/devd:latest
command: --livewatch
expose:
- 8000
init: true
ports:
- 8000:8000
volumes:
- .:/srv/jekyll
jekyll:
image: jekyll/jekyll:latest
command: jekyll serve --drafts --force_polling --watch --port 4000
environment:
- BUNDLE_PATH=/usr/local/bundle
expose:
- 4000
init: true
ports:
- 4000:4000
volumes:
- .:/srv/jekyll:cached
- ./.vendor/bundle:/usr/local/bundle:cached