3 steps to start running containers today

In this tutorial, you will learn how to run two containers in a pod to host a WordPress site.
28 readers like this.
Shipping containers stacked

Wikimedia Commons

Whether you're interested in them as part of your job, for future job opportunities, or just out of interest in new technology, containers can seem pretty overwhelming to even an experienced systems administrator. So how do you actually get started with containers? And what's the path from containers to Kubernetes? Also, why is there a path from one to the other at all? As you might expect, the best place to start is the beginning.

1. Understanding containers

On second thought, starting at the beginning arguably dates back to early BSD and their special chroot jails, so skip ahead to the middle instead.

Not so very long ago, the Linux kernel introduced cgroups, which enables you to "tag" processes with something called a namespace. When you group processes together into a namespace, those processes act as if nothing outside that namespace exists. It's as if you've put those processes into a sort of container. Of course, the container is virtual, and it exists inside your computer. It runs on the same kernel, RAM, and CPU that the rest of your operating system is running on, but you've contained the processes.

Pre-made containers get distributed with just what's necessary to run the application it contains. With a container engine, like Podman, Docker, or CRI-O, you can run a containerized application without installing it in any traditional sense. Container engines are often cross-platform, so even though containers run Linux, you can launch containers on Linux, macOS, or Windows.

More importantly, you can run more than one container of the same application when there's high demand for it.

Now that you know what a container is. The next step is to run one.

[ Get the cheat sheet: What’s the difference between a pod, a cluster, and a container? ]

2. Run a container

Before running a container, you should have a reason for running a container. You can make up a reason, but it's helpful for that reason to interest you, so you're inspired actually to use the container you run. After all, running a container but never using the application it provides only proves that you're not noticing any failures, but using the container demonstrates that it works.

I recommend WordPress as a start. It's a popular web application that's easy to use, so you can test drive the app once you've got the container running. While you can easily set up a WordPress container, there are many configuration options, which can lead you to discover more container options (like running a database container) and how containers communicate.

I use Podman, which is a friendly, convenient, and daemonless container engine. If you don't have Podman available, you can use the Docker command instead. Both are great open source container engines, and their syntax is identical (just type docker instead of podman). Because Podman doesn't run a daemon, it requires more setup than Docker, but the ability to run rootless daemonless containers is worth it.

If you're going with Docker, you can skip down to the WordPress subheading. Otherwise, open a terminal to install and configure Podman:

$ sudo dnf install podman

Containers spawn many processes, and normally only the root user has permission to create thousands of process IDs. Add some extra process IDs to your user by creating a file called /etc/subuid and defining a suitably high start UID with a suitable large number of permitted PIDs:

seth:200000:165536

Do the same for your group in a file called /etc/subgid. In this example, my primary group is staff (it may be users for you, or the same as your username, depending on how you've configured your system.)

staff:200000:165536

Finally, confirm that your user is also permitted to manage thousands of namespaces:

$ sysctl --all --pattern user_namespaces
user.max_user_namespaces = 28633

If your user doesn't have permission to manage at least 28,000 namespaces, increase the number by creating the file /etc/sysctl.d/userns.conf and enter:

user.max_user_namespaces=28633

Running WordPress as a container

Now, whether you're using Podman or Docker, you can pull a WordPress container from a container registry online and run it. You can do all this with a single Podman command:

$ podman run --name mypress \
-p 8080:80 -d wordpress

Give Podman a few moments to find the container, copy it from the internet, and start it up.

Start a web browser once you get a terminal prompt back and navigate to localhost:8080. WordPress is running, waiting for you to set it up.

It doesn't take long to reach your next hurdle, though. WordPress uses a database to keep track of data, so you need to provide it with a database where it can store its information.

Before continuing, stop and remove the WordPress container:

$ podman stop mypress
$ podman rm mypress

3. Run containers in a pod

Containers are, by design and, as their name suggests, self-contained. An application running in a container isn't supposed to interact with applications or infrastructure outside of its container. So when one container requires another container to function, one solution is to put those two containers inside a bigger container called a pod. A pod ensures that its containers can share important namespaces to communicate with one another.

Create a new pod, providing a name for the pod and which ports you want to be able to access:

$ podman pod create \
--name wp_pod \
--publish 8080:80

Confirm that the pod exists:

$ podman pod list
POD ID        NAME     STATUS    INFRA ID      # OF CONTAINERS
100e138a29bd  wp_pod   Created   22ace92df3ef   1

Add a container to a pod

Now that you have a pod for your interdependent containers, you launch each container by specifying a pod for it to run in.

First, launch a database. You can make up your own credentials as long as you use those same credentials when connecting to the database from WordPress.

$ podman run --detach \
--pod wp_pod \
--restart=always \
-e MYSQL_ROOT_PASSWORD="badpassword0" \
-e MYSQL_DATABASE="wp_db" \
-e MYSQL_USER="tux" \
-e MYSQL_PASSWORD="badpassword1" \
--name=wp_db mariadb

Next, launch the WordPress container into the same pod:

$ podman run --detach \
--restart=always --pod=wp_pod \
-e WORDPRESS_DB_NAME="wp_db" \
-e WORDPRESS_DB_USER="tux" \
-e WORDPRESS_DB_PASSWORD="badpassword1" \
-e WORDPRESS_DB_HOST="127.0.0.1" \
--name mypress wordpress

Now launch your favorite web browser and navigate to localhost:8080.

This time, the setup goes as expected. WordPress connects to the database because you've passed those environment variables while launching the container.

After you've created a user account, you can log in to see the WordPress dashboard.

Next steps

You've created two containers, and you've run them in a pod. You know enough now to run services in containers on your own server. If you want to move to the cloud, containers are, of course, well-suited for that. With tools like Kubernetes and OpenShift, you can automate the process of launching containers and pods on a cluster. If you're thinking about taking the next step, read 3 ways to get started with Kubernetes by Kevin Casey, and give the Minikube tutorial he mentions a try.

Seth Kenlon
Seth Kenlon is a UNIX geek, free culture advocate, independent multimedia artist, and D&D nerd. He has worked in the film and computing industry, often at the same time.

1 Comment

Hello pals, thanks.
I have a problem with the template, it is broken after install.
and in WP dashboard>Tools> Site Health It show the followings critical issues

The REST API encountered an error
Your site could not complete a loopback request

https://ask.fedoraproject.org/t/imported-template-is-broken-in-wordpress-container-the-rest-api-encountered-an-error-your-site-could-not-complete-a-loopback-request/22594

Creative Commons LicenseThis work is licensed under a Creative Commons Attribution-Share Alike 4.0 International License.