🐳 Adds a Jekyll Docker Compose file

This commit is contained in:
Jeff Triplett 2021-08-31 11:50:07 -05:00
parent 48b2022b4f
commit 0eca491c35
No known key found for this signature in database
GPG Key ID: BD6DAFC4D1A381EA

11
docker-compose.yml Normal file
View File

@ -0,0 +1,11 @@
version: "3"
services:
jekyll:
image: jekyll/jekyll:latest
command: jekyll serve --drafts --force_polling --watch --port 8000
ports:
- 8000:8000
volumes:
- ./.vendor/bundle:/usr/local/bundle:cached
- .:/srv/jekyll:cached