Skip to content

Instantly share code, notes, and snippets.

@pawelkomarnicki
Created July 8, 2018 13:16
Show Gist options
  • Save pawelkomarnicki/7f2c4f0547d23d551ed2351d5c07339b to your computer and use it in GitHub Desktop.
Save pawelkomarnicki/7f2c4f0547d23d551ed2351d5c07339b to your computer and use it in GitHub Desktop.
Jekyll docker-compose.yml
version: '3'
services:
default: &default
image: jekyll/jekyll
volumes:
- .:/srv/jekyll
ports:
- "80:4000"
dev:
<< : *default
command: jekyll serve --watch --incremental
build:
<< : *default
command: jekyll build
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment