Guide: Getting started with Podman Quadlets

Most people probably heard of Podman. An OCI Container management tool very similar to Docker - with some very interesting differences like being able to run completely rootless, easily integrate with systemd and the use of Pods to mention some.

The most common way of running podman containers is podman run, easily translated from docker run.
For example to start a web server on port 8080 run:
podman run --name my_webserver -dt -p 8080:80/tcp docker.io/nginx

Read more →

First Post! Welcome.

Welcome!

This site is running on a VPS. I’m experimenting with hugo, git, hook and nginx.

In (fairly)short:

I’ve got a local git repo where I do my writing and editing in plain markdown. With the help of Hugo a static website is generated. Then I git push that to the VPS.
When the content is pushed to the main branch of the repo, a git hook then deploys the site to the nginx-webserver.

Read more →