Browse our Kubernetes and Docker articles here. We’ve shared our know-how to help beginners get started with a very exciting technology.

All HowTo's Cybersecurity Kubernetes & Docker Linux Ubuntu, Mint & Debian Linux

Deploy Wazuh in 5 Minutes

This article walks you through the process of running Wazuh in Docker on your local systemn (or server) in about 5 minutes. It’s a simple process and a great tool. The official documentation is “https://wazuh.com/install/” but their instructions didn’t work. Hence this article. You can run the docker containers on

Read more
All HowTo's Kubernetes & Docker Linux Ubuntu, Mint & Debian Linux

Host Your Own Private MineCraft Server in 2 Minutes

This article aims to show how you can host your own Minecraft server running in a Docker container in around 2 minutes. The starting point is a working Ubuntu server, but because we’re using Docker, it could be any system that allows you to run Docker containers. I’m using Ubuntu,

Read more
Kubernetes & Docker Linux Ubuntu, Mint & Debian Linux

Moodle in Docker with options for Kubernetes

This article discusses and demonstrates the design and implementation of Moodle using Docker with the option for later deployments with Kubernetes. We’re using Ubuntu 24.04 but this should work fine on similar versions of Ubuntu as well. The key points are: Moodle is deployed via a Docker container. Moodle references

Read more
All HowTo's Kubernetes & Docker Linux

Create an LDAP Server Quickly – And add a few users and a group

In this article, we’re going to spin up a quick LDAP server using a Docker image. We’re going to test that a user can authenticate to it using the CLI. We’ll leave it there, but you can point any LDAP tool to it to manage it. Create a “docker-compose.yml” file

Read more
All HowTo's Kubernetes & Docker Linux Redhat, Fedora and CentOS Linux Ubuntu, Mint & Debian Linux

Running LogStash in Docker

This is a short HowTo for running LogStash in Docker. We’re using Ubuntu 22.04. Install Docker and create our directory structure: apt install docker docker.io mkdir ~/logstash mkdir ~/logstash/config/ ~/logstash/pipeline/ Create the Dockerfile file “~/Dockerfile”: # The image to use: FROM docker.elastic.co/logstash/logstash:8.15.0 # Remove the pre-existing config file from within

Read more
All HowTo's Kubernetes & Docker

Docker Quick Start (5 minutes to a running web site)

This article demonstrates how to get a web site running using Docker. We’re starting with a Linux server (doesn’t matter which distribution). We’re going to pull down an Docker image from the public repository, modify it’s “index” file, and expose it – making it publicly accessible. I’ve added a little

Read more
All HowTo's Kubernetes & Docker Ubuntu, Mint & Debian Linux Web Servers

Docker 101 – Get your head around Docker

In this article we’re going to walk through installing Docker on Ubuntu, starting a few Docker containers, and then running those containers behind a reverse proxy. When we’re done, you’ll have a load balance terminating SSL (TLS) connections with multiple Docker containers running the workload. This is how it will

Read more
Kubernetes & Docker Web Servers Windows

Docker for Windows – Install, run and launch a Web Server in Docker

This article shows how to install Docker for Windows 10 (and probably 11), and then start a web server in a Docker container. Install Docker Visit “https://www.docker.com/products/docker-desktop” and download Docker installer. Start the installation process (you’ll need local admin privileges). During the installation process, the wizard will ask if you

Read more
All HowTo's Kubernetes & Docker

Kubernetes (MicroK8s) Part 4 – Microk8s in High Availability

The good news is that Microk8s can now be deployed in a multi-node architecture. And it’s simple to do. This video “https://www.youtube.com/watch?v=dNT5uEeJBSw” is a nice demonstration. It uses a floating IP between the cluster nodes that removes the need to use a load balancer in front of your cluster. Start

Read more