Skip to content

Update Jekyll to v4 #262

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
_site/
.sass-cache/
.jekyll-metadata
.jekyll-cache
.DS_Store
6 changes: 6 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
source "https://rubygems.org"

gem 'jekyll-paginate'
gem 'jekyll-watch'
gem 'kramdown-parser-gfm'
gem 'webrick'
32 changes: 32 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
GEM
remote: https://rubygems.org/
specs:
ffi (1.15.5)
jekyll-paginate (1.1.0)
jekyll-watch (2.2.1)
listen (~> 3.0)
kramdown (2.4.0)
rexml
kramdown-parser-gfm (1.1.0)
kramdown (~> 2.0)
listen (3.7.1)
rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10)
rb-fsevent (0.11.2)
rb-inotify (0.10.1)
ffi (~> 1.0)
rexml (3.2.5)
webrick (1.8.1)

PLATFORMS
ruby
x86_64-linux

DEPENDENCIES
jekyll-paginate
jekyll-watch
kramdown-parser-gfm
webrick

BUNDLED WITH
2.3.25
3 changes: 2 additions & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ sass:
style: compressed

# Gems
gems: [jekyll-paginate]
plugins:
- jekyll-paginate

# Plugins
plugins_dir:
Expand Down
35 changes: 0 additions & 35 deletions _posts/2017-01-01-ops-stage1.markdown

This file was deleted.

9 changes: 1 addition & 8 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,9 @@ version: '3'
services:

jekyll:
image: jekyll/jekyll:3
image: jekyll/jekyll:4
volumes:
- ./:/srv/jekyll
ports:
- 4000:4000
command: ["jekyll", "serve"]

#This service is just for building the site
build:
image: jekyll/jekyll:3
volumes:
- ./:/srv/jekyll
command: ""