9fa5c9418c
* Migrate to using "remote themes" instead of forked content * Update to most recent mmistakes * Add docker-based testing * Create Makefile for test targets * Add travis-ci integration * Update badges to use shields.io * Replace splash page image (old one's attribution disappeared from unsplash.com)
10 lines
214 B
YAML
10 lines
214 B
YAML
---
|
|
version: '3'
|
|
services:
|
|
website:
|
|
image: jekyll/jekyll:3.8.5
|
|
ports:
|
|
- 4000:4000
|
|
volumes:
|
|
- .:/srv/jekyll
|
|
command: jekyll serve --config _config.yml,_dev.yml -t --watch --incremental
|