
Ruan Bekker
@ruanbekker
I love cloudy stuff, containers, automation, linux and sharing my knowledge with the world.

How to use the AWS Terraform Provider
Written by Ruan Bekker
In this post we will be using the AWS Terraform provider, from how to install Terraform, create a AWS IAM User, configure the AWS Provider and deploy a EC2 instance using Terraform. ## AWS...


Docker Multistage Builds for Hugo
Written by Ruan Bekker
In this tutorial I will demonstrate how to keep your docker **container images** nice and **slim** with the use of **multistage builds** for a **hugo** documentation project. Hugo is a stat...


Create a Discord Bot in Python
Written by Ruan Bekker
In this tutorial we will develop our own **[Discord](https://discord.com/)** bot using **Python**. The source code for this bot will be stored in my [github repository](https://github.com/r...


Docker Monitoring Starter Template
Written by Ruan Bekker
In this tutorial we will dive a bit deeper into the [docker-monitoring-stack-gpnc](https://github.com/ruanbekker/docker-monitoring-stack-gpnc) repository, on how to setup a docker monitoring...


Redirect Systemd Unit Logs to Syslog
Written by Ruan Bekker
By default when we create a systemd unit file and start the service using systemd, we can access the logs using `journalctl` as: ```bash $ sudo journalctl -fu ``` If we wanted to redirect...


Install Nodejs on Linux using NVM
Written by Ruan Bekker
In this post we will install Nodejs using Node Version Manager (nvm), which allows you to install and use different versions of node via the command line. For more information on NVM, check...


Running Traefik Proxy on Docker
Written by Ruan Bekker
In this tutorial we will be setting up [Traefik ](https://traefik.io) v2 as our reverse proxy with port 80 and 443 enabled, and then hook up a example application behind the application load...


Encryption using PyCrypto in Python
Written by Ruan Bekker
While I'm learning a lot about encryption at the moment, I wanted to test out encryption with the PyCrypto module in Python using the [Advanced Encryption Standard (AES)](https://en.wikipedi...