Head over to (dominikberner.ch/)[dominikberner.ch/] to read the blog. The site is built using jekyll-now
I'm using an alpine based docker container to run the site locally to preview changes. Build and run it with:
docker build . --rm -t ghpages
docker run -ti -p 4000:4000 -v $(pwd):/home/jekyll --rm ghpages
If the commands require sudo rights consider adding the current user to the docker group:
sudo groupadd docker
sudo usermod -aG docker $(whoami)
newgrp docker