mirror of
https://github.com/wsvincent/awesome-django.git
synced 2025-01-31 05:33:43 +00:00
📝 Updates compose file to be easier to work with
This commit is contained in:
parent
75a3852c77
commit
e6c5a4f239
|
@ -1,11 +1,22 @@
|
||||||
version: "3"
|
version: "3"
|
||||||
|
|
||||||
services:
|
services:
|
||||||
jekyll:
|
|
||||||
image: jekyll/jekyll:latest
|
devd:
|
||||||
command: jekyll serve --drafts --force_polling --watch --port 8000
|
image: ghcr.io/jefftriplett/devd:latest
|
||||||
|
command: --livewatch
|
||||||
ports:
|
ports:
|
||||||
- 8000:8000
|
- 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:
|
volumes:
|
||||||
- ./.vendor/bundle:/usr/local/bundle:cached
|
- ./.vendor/bundle:/usr/local/bundle:cached
|
||||||
- .:/srv/jekyll:cached
|
- .:/srv/jekyll:cached
|
||||||
|
|
Loading…
Reference in New Issue
Block a user