Yet another title.

Currently nothing but whitespace.

View the Project on GitHub

Dockerized Minimal theme

This repository contains an nginx Dockerfile and the Minimal Jekyll theme for GitHub Pages, to be served by self hosting it with Docker.

Installation

git clone https://github.com/ekinhbayar/dockerized-minimal.git

Usage

docker run --rm \
        -v "$(pwd):/src" \
        -w /src \
        ruby:2.3 \
        sh -c 'bundle install \
            --path vendor/bundle \
            && exec jekyll build --watch'
docker build -t blog-title .
docker run -d \
        -p 80:80 \
        -v "$(pwd)/web:/usr/share/nginx/html" \
        blog-title


To Do