fix build process

This commit is contained in:
gidsi 2018-10-14 00:40:14 +02:00
parent 0cc37e4cdc
commit 4a20d3a9a4
No known key found for this signature in database
GPG Key ID: B47291090A6E5604
3 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,5 @@
from jekyll/jekyll as builder from jekyll/jekyll as builder
add . /srv/jekyll add . /srv/jekyll
run mkdir /site
run whoami
run jekyll build --source /srv/jekyll --destination /tmp run jekyll build --source /srv/jekyll --destination /tmp
from nginx:alpine from nginx:alpine

View File

@ -1,3 +1,4 @@
source 'https://rubygems.org' source 'https://rubygems.org'
gem 'jekyll', '~>3.8.4' gem 'jekyll', '~>3.8.4'
gem 'jekyll-paginate'

View File

@ -11,6 +11,7 @@ markdown: kramdown
permalink: /:year/:month/:day/:title permalink: /:year/:month/:day/:title
paginate: 5 paginate: 5
paginate_path: "/blog/:num" paginate_path: "/blog/:num"
plugins: [jekyll-paginate]
include: [ include: [
".well-known" ".well-known"
] ]