Skip to content

Instantly share code, notes, and snippets.

@BanterBoy
Created August 23, 2020 01:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BanterBoy/e3e50beadd612527f9dcce9dcf800cdc to your computer and use it in GitHub Desktop.
Save BanterBoy/e3e50beadd612527f9dcce9dcf800cdc to your computer and use it in GitHub Desktop.
docker-compose.yml file for Jekyll Pages Blog Server
jekyll:
image: jekyll/jekyll:pages
command: jekyll serve --watch --incremental --force_polling
ports:
- 4000:4000
container_name: blog_server
volumes:
- ".:/srv/jekyll"
- "./vendor/bundle:/usr/local/bundle"
@BanterBoy
Copy link
Author

This file needs to be placed in your GitHub repository running a GitHub Pages site

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment