diff --git a/.gitignore b/.gitignore
index 66e73a2..7ccaf82 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,4 +2,5 @@
_site/
.sass-cache/
.jekyll-metadata
+.jekyll-cache
.DS_Store
\ No newline at end of file
diff --git a/Gemfile b/Gemfile
new file mode 100644
index 0000000..5110fe8
--- /dev/null
+++ b/Gemfile
@@ -0,0 +1,6 @@
+source "https://rubygems.org"
+
+gem 'jekyll-paginate'
+gem 'jekyll-watch'
+gem 'kramdown-parser-gfm'
+gem 'webrick'
\ No newline at end of file
diff --git a/Gemfile.lock b/Gemfile.lock
new file mode 100644
index 0000000..453f3c2
--- /dev/null
+++ b/Gemfile.lock
@@ -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
diff --git a/_config.yml b/_config.yml
index 1224fb5..412fbd1 100644
--- a/_config.yml
+++ b/_config.yml
@@ -50,7 +50,8 @@ sass:
style: compressed
# Gems
-gems: [jekyll-paginate]
+plugins:
+ - jekyll-paginate
# Plugins
plugins_dir:
diff --git a/_posts/2017-01-01-ops-stage1.markdown b/_posts/2017-01-01-ops-stage1.markdown
deleted file mode 100644
index 42a9f22..0000000
--- a/_posts/2017-01-01-ops-stage1.markdown
+++ /dev/null
@@ -1,35 +0,0 @@
----
-layout: landing
-title: "Docker for IT Pros and System Administrators Stage 1"
-date: 2017-01-20
-author: "@manomarks"
-tags: [windows,operations,developer,landing]
-categories:
-terms: 0
----
-This stage will
-
- * Get you familiar with the core concepts of Docker
-
- * Help you understand the fundamental value proposition for Docker
-
- * Help you see how Docker can help your organization
-
-For an introduction to Docker specifically for sys admins and IT Pros, check out Mike Coleman's talk Docker?!? But I'm a SYSADMIN!
-
-
-
-
-
-
-
-
-## Hands-on Learning
-Give Docker a try with these two beginning tutorials:
-
-[Docker for Beginners - Linux](/beginner-linux)
-
-[Deploy a multi-service application](/swarm-stack-intro)
-
-## More Reading: Ebook
-To understand the differences between containers and VMs, check out this ebook: [Docker for the Virtualization Admin](https://goto.docker.com/docker-for-the-virtualization-admin.html)
diff --git a/docker-compose.yml b/docker-compose.yml
index 2b6e6ca..0520e1a 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -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: ""