Pipe ( | )? What is it and how you use it

The pipe (|) is one of the foundational things in UNIX.  The Pipe allows you to redirect STDOUT to STDIN of the next commend.

Understanding STDIN, STDOUT, and STDERR is important to better understand the pipe. I have an article which explains STDIN, STDOUT, and STDERR here. Make sure you read it before proceeding.

Continue reading “Pipe ( | )? What is it and how you use it”

Convert WordPress Server into Docker Containers (Part 1)

In this post, we are going to discuss how to migrate a traditional WordPress + MySql or MariaDB into Docker containers. This post is very involved and requires knowledge spanning a wide spectrum of technologies. This post assumes that you know, or can find out about opening firewall ports, UNIX/Linux commands, etc. And only focus on the necessary step to convert WP+DB into Docker containers. Now, let’s discuss the prerequisites:

Prerequisites:

Continue reading “Convert WordPress Server into Docker Containers (Part 1)”