Introduction¶
Note
This document represents expanded content from its parent document found here. If you need a quick how-to, that parent document may suffice.
Podman (Pod Manager) is a container and image management tool compatible with the OCI (Open Container Initiative).
Podman:
- works without a daemon (it can run containers as a
systemd
service) - allows you to manage containers as an unprivileged user (no need to be root)
- included, unlike docker, in the Rocky Linux repositories
That makes Podman not only a docker-compatible alternative container runtime but much more.
Install Podman¶
Use the dnf
utility to install Podman:
dnf install podman
You can retrieve the list of available Podman subcommands with the following command:
$ podman --help
Manage pods, containers and images
Usage:
podman [options] [command]
Available Commands:
attach Attach to a running container
auto-update Auto update containers according to their auto-update policy
...
Here is a non-exhaustive list of the most commonly used subcommands:
Subcommand | Description |
---|---|
build |
Builds an image using instructions from Containerfiles |
commit |
Creates a new image based on the changed container |
container |
Manages containers |
cp |
Copies files/folders between a container and the local filesystem |
create |
Creates but does not start a container |
exec |
Runs a process in a running container |
image |
Manages images |
images |
Lists images in local storage |
info |
Displays Podman system information |
init |
Initializes one or more containers |
inspect |
Displays the configuration of the object denoted by ID |
kill |
Kills one or more running containers with a specific signal |
login |
Logs in to a container registry |
logs |
Fetches the logs of one or more containers |
network |
Manages networks |
pause |
Pauses all the processes in one or more containers |
ps |
Lists containers |
pull |
Pulls an image from a registry |
push |
Pushes an image to a specified destination |
restart |
Restarts one or more containers |
rm |
Removes one or more containers |
rmi |
Removes one or more images from local storage |
run |
Runs a command in a new container |
start |
Starts one or more containers |
stats |
Displays a live stream of container resource usage statistics |
stop |
Stops one or more containers |
system |
Manages Podman |
top |
Displays the running processes of a container |
unpause |
Unpauses the processes in one or more containers |
volume |
Manages volumes |
Note
Podman can run almost any Docker command thanks to its similar CLI interface.
If you need to use a compose file, remember to install the podman-compose
package:
dnf install podman-compose
Adding a container¶
Run a Nextcloud self-hosted cloud platform as an example:
podman run -d -p 8080:80 nextcloud
You will receive a prompt to select the container registry to download from. In our example, you will use docker.io/library/nextcloud:latest
.
Once you have downloaded the Nextcloud container, it will run.
Enter ip_address:8080 in your web browser (assuming you opened the port in firewalld
) and set up Nextcloud:
Running containers as systemd
services¶
As mentioned, you can run Podman containers as systemd
services. Let us now do it with Nextcloud. Run:
podman ps
You will get a list of running containers:
04f7553f431a docker.io/library/nextcloud:latest apache2-foregroun... 5 minutes ago Up 5 minutes 0.0.0.0:8080->80/tcp compassionate_meninsky
As seen above, our container's name is compassionate_meninsky
.
To make a systemd
service for the Nextcloud container and enable it on reboot, run the following:
podman generate systemd --name compassionate_meninsky > /usr/lib/systemd/system/nextcloud.service
systemctl enable nextcloud
Replace compassionate_meninsky
with your container's assigned name.
When your system reboots, Nextcloud will restart in Podman.
DockerFiles¶
A DockerFile is a file used by Docker to create custom container images. Since Podman is fully compatible with Dockerfile, you can build your container images with Podman like you would with Docker.
Web server from a DockerFile¶
You will create an httpd
server based on a RockyLinux 9.
Create a folder dedicated to our image:
mkdir myrocky && cd myrocky
Create an index.html
file that will run in our web server:
echo "Welcome to Rocky" > index.html
Create a Dockerfile
file with the following content:
# Use the latest rockylinux image as a start
FROM rockylinux:9
# Make it uptodate
RUN dnf -y update
# Install and enable httpd
RUN dnf -y install httpd
RUN systemctl enable httpd
# Copy the local index.html file into our image
COPY index.html /var/www/html/
# Expose the port 80 to the outside
EXPOSE 80
# Start the services
CMD [ "/sbin/init" ]
You are ready to build our image called myrockywebserver
:
$ podman build -t myrockywebserver .
STEP 1/7: FROM rockylinux:9
Resolved "rockylinux" as an alias (/etc/containers/registries.conf.d/000-shortnames.conf)
Trying to pull docker.io/library/rockylinux:9...
Getting image source signatures
Copying blob 489e1be6ce56 skipped: already exists
Copying config b72d2d9150 done
Writing manifest to image destination
STEP 2/7: RUN dnf -y update
Rocky Linux 9 - BaseOS 406 kB/s | 2.2 MB 00:05
Rocky Linux 9 - AppStream 9.9 MB/s | 7.4 MB 00:00
Rocky Linux 9 - Extras 35 kB/s | 14 kB 00:00
Dependencies resolved.
================================================================================
Package Arch Version Repository Size
================================================================================
Upgrading:
basesystem noarch 11-13.el9.0.1 baseos 6.4 k
binutils x86_64 2.35.2-42.el9_3.1 baseos 4.5 M
...
Complete!
--> 2e8b93d30f31
STEP 3/7: RUN dnf -y install httpd
Last metadata expiration check: 0:00:34 ago on Wed Apr 3 07:29:56 2024.
Dependencies resolved.
================================================================================
Package Arch Version Repository Size
================================================================================
Installing:
httpd x86_64 2.4.57-5.el9 appstream 46 k
...
Complete!
--> 71db5cabef1e
STEP 4/7: RUN systemctl enable httpd
Created symlink /etc/systemd/system/multi-user.target.wants/httpd.service → /usr/lib/systemd/system/httpd.service.
--> 423d45a3cb2d
STEP 5/7: COPY index.html /var/www/html/
--> dfaf9236ebae
STEP 6/7: EXPOSE 80
--> 439bc5aee524
STEP 7/7: CMD [ "/sbin/init" ]
COMMIT myrockywebserver
--> 7fcf202d3c8d
Successfully tagged localhost/myrockywebserver:latest
7fcf202d3c8d059837cc4e7bc083a526966874f978cd4ab18690efb0f893d583
You can run your Podman image and confirm that it started:
$ podman run -d --name rockywebserver -p 8080:80 localhost/myrockywebserver
282c09eecf845c7d9390f6878f9340a802cc2e13d654da197d6c08111905f1bd
$ podman ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
282c09eecf84 localhost/myrockywebserver:latest /sbin/init 16 seconds ago Up 16 seconds 0.0.0.0:8080->80/tcp rockywebserver
You launched your Podman image in daemon mode (-p
) and named it rockywebserver
(option --name
).
You redirected port 80 (protected) to port 8080 with the -p
option. See if the port is listening with:
ss -tuna | grep "*:8080"
tcp LISTEN 0 4096 *:8080 *:*
Verify that the index.html
file is accessible:
$ curl http://localhost:8080
Welcome to Rocky
Congratulations! You can now stop and destroy your running image, giving the name you provided during creation:
podman stop rockywebserver && podman rm rockywebserver
If you relaunch the build process, podman
will use a cache at each step of the build:
$ podman build -t myrockywebserver .
STEP 1/7: FROM rockylinux:9
STEP 2/7: RUN dnf -y update
--> Using cache 2e8b93d30f3104d77827a888fdf1d6350d203af18e16ae528b9ca612b850f844
--> 2e8b93d30f31
STEP 3/7: RUN dnf -y install httpd
--> Using cache 71db5cabef1e033c0d7416bc341848fbf4dfcfa25cd43758a8b264ac0cfcf461
--> 71db5cabef1e
STEP 4/7: RUN systemctl enable httpd
--> Using cache 423d45a3cb2d9f5ef0af474e4f16721f4c84c1b80aa486925a3ae2b563ba3968
--> 423d45a3cb2d
STEP 5/7: COPY index.html /var/www/html/
--> Using cache dfaf9236ebaecf835ecb9049c657723bd9ec37190679dd3532e7d75c0ca80331
--> dfaf9236ebae
STEP 6/7: EXPOSE 80
--> Using cache 439bc5aee524338a416ae5080afbbea258a3c5e5cd910b2485559b4a908f81a3
--> 439bc5aee524
STEP 7/7: CMD [ "/sbin/init" ]
--> Using cache 7fcf202d3c8d059837cc4e7bc083a526966874f978cd4ab18690efb0f893d583
COMMIT myrockywebserver
--> 7fcf202d3c8d
Successfully tagged localhost/myrockywebserver:latest
7fcf202d3c8d059837cc4e7bc083a526966874f978cd4ab18690efb0f893d583
You can clear that cache with the prune
subcommand:
podman system prune -a -f
Options | Description |
---|---|
-a |
Removes all unused data, not only the external to Podman |
-f |
No prompt for confirmation |
--volumes |
Prune volumes |
Author: Neel Chauhan, Antoine Le Morvan
Contributors: Steven Spencer, Ganna Zhyrnova