[ad_1]
Jack Wallen walks you thru the method of putting in the container runtime Podman on Ubuntu Server 22.04.
As you already know, Kubernetes has formally deprecated Docker assist, which implies anybody working with Kubernetes might need to vary runtime environments. One such surroundings is almost a drop-in alternative for Docker named Podman.
SEE: Hiring package: Again-end Developer (TechRepublic Premium)
Podman is put in on RHEL-based server distributions by default and is out there to put in from the usual Ubuntu repositories. Nevertheless, there are just a few further steps to take when putting in Podman on Ubuntu.
Let me stroll you thru the method.
What you’ll want
The one stuff you’ll have to make this work are a operating occasion of Ubuntu Server 22.04 (Jammy Jellyfish) and a person with sudo privileges. That’s it. Let’s make some container magic.
The best way to set up Podman
The very first thing you must do is replace and improve your occasion of Ubuntu. Log into the server and difficulty the next two instructions:
sudo apt replace
sudo apt improve -y
When the improve completes, you’re able to go. Nevertheless, if the Linux kernel is upgraded within the course of, you’ll have to first restart the server so the adjustments take impact. Restart with:
sudo reboot
After the reboot completes, log again in and set up Podman with the command:
sudo apt set up podman -y
The best way to add the default registries
Out of the field on Ubuntu Server, Podman doesn’t embrace any registries. Meaning you received’t have the ability to pull down any photographs. We’ve got to repair that. Open the registries file with the command:
sudo nano /and many others/containers/registries.conf
You’ll see a number of content material that’s all commented out. Scroll all the way down to the underside of that file and paste the next code:
[registries.search]
registries=["registry.access.redhat.com", "registry.fedoraproject.org", "docker.io"]
That may add the redhat, fedoraproject, and docker registries to Podman.
Save and shut the file.
To confirm the registries had been added, difficulty the command:
podman data
It is best to see the next listed within the output:
registries:
search:
- registry.entry.redhat.com
- registry.fedoraproject.org
- docker.io
There we go. We now have registries to drag from. Take a look at it by flattening the hello-world picture with:
podman pull hello-world
It is best to see the next within the output:
Attempting to drag docker.io/library/hello-world:newest...
Getting picture supply signatures
Copying blob 2db29710123e completed
Copying config feb5d9fea6 completed
Writing manifest to picture vacation spot
Storing signatures
feb5d9fea6a5e9606aa995e879d862b825965ba48de054caab5ef356dc6b3412
The final line might be a random string of characters indicating the ID of the picture that was pulled.
You’ll be able to maintain pulling completely different photographs to additional take a look at Podman. When you’re completed, record out the photographs with:
podman photographs
It is best to see all the photographs you’ve pulled listed (Determine A).
Determine A
Congratulations, you now have Podman up and operating on Ubuntu Server 22.04. Take pleasure in that containerized energy at your fingertips.
Subscribe to TechRepublic’s How To Make Tech Work on YouTube for all the most recent tech recommendation for enterprise execs from Jack Wallen.
[ad_2]