[ Docker  GitHub  Blog  ]

After some internal debates with myself, I found that the best option for me to re-start blogging was to return to basics and get a flat and easy to maintain blog.

Since I found myself writing a lot of code in github and maintaining lots of Markdown documents and Python Notebooks… the main reason to choose Jekyll was because of GitHub Pages. In this post, i want to help you to start blogging with GitHub Pages and maintain your blog with the strategy i found interesting: Docker + github branches

Prerequisites

I´m using Windows 10 as my setup, but you can use any linux or Mac distro you want, since everything used here is opensource linux based code:

NOTE: Those requisites are important, because with previous version of Windows 10, WSL and docker, the blog will not start correctly

Setup

Configure docker

Check the WSL2 integration on your Docker configuration

Use WSL 2 engine

And set up the distro you want to use with docker

Enable Ubuntu-20.04 integration

Create your repository

First action to do is follow the official instructions and create your github page.

TIP: After creating your repository, go and clone any Jekyll theme preconfigured (I´m using portfolio-iro)

Setup your docker

One of the main reasons i choose Jekyll was because i can run it in a container to quickly edit and review my posts before uploading to the site.

1) Create a docker-compose.yml file in the root directory

2) Add the following contents

version: '2.2'

services:
  jekyll:
    image: jekyll/jekyll:latest
    command: jekyll serve --watch --force_polling --verbose
    ports:
      - 4000:4000
    volumes:
      - .:/srv/jekyll

This will ensure that your container will not only start your blog locally, but will be refreshing your site after each “save” you are doing on the markdown file containing your post. This is a very convenient way to edit material and see how it renders in your blog when you commit the change to the main branch.

3) Execute “docker-compose up

4) Open in browser http://127.0.0.1:4000/

5) Start blogging as usual :)

Tips

Branches

To help you creating new posts and testing capabilities (like updating look and feel of your blog for example), you only need to create a branch of your repo, and work on that branch.

For example…in my case, I created a branch called “vNext” where I´ll create the new posts. The only thing to do to publish the post then will be to do a Pull request with my main branch :)

I´m also adding some kind of protection to myself, by requiring manual pull request reviewing…this will hopefuly minimize mistakes from myself :)

require pull request reviews

Images

To reference images in your markdown files, remember to point to the relative path from the root directory:

This will not render the image correctly:

     ![Img](../img/posts/createblog/2.png)

This will render the image correctly:

     ![Img](/img/posts/createblog/2.png)