Showing posts fromPodman

5 Podman Features You Should Know: Kubernetes & Containers Simplified

  • 23 Apr, 2026

Você já sentiu que gerenciar containers é como tentar resolver um quebra-cabeça de mil peças, onde metade delas parece não se encaixar? Muitas vezes, a complexidade das permissões de sistema e a curv

5 Podman Features You Should Know: Kubernetes & Containers SimplifiedRead More

A rootless Pod for wordpress

  • 07 Dec, 2021

Podman Pods are very similar to Kubernetes pods in a way that they can have more than one container. Every Podman pod contains one infra container by default. This container is responsible for associating the names space with the pod and allowing podman to connect the containers to another pod. Create a Pod using Podman The first step is to create a Pod using podman: sudo podman pod create –name For our example we will create a pod with the name wp-pod sudo podman pod create -p 8080:80 --name wp-pod After creating the Pod you can see the infra container using the command: sudo podman pod ps -a --pod Note that host port 8080 has been redirected to port 80 of the pod. Pod port settin

A rootless Pod for wordpressRead More

Error when login using CP4Data CLI command line

  • 06 Mar, 2023

Today i got the following error when i try to run the command :
./cpd-cli manage login-entitled-registry ${IBMENTITLEMENTKEY} Run command: podman run -d --name olm-utils-play --env CMD\PREFIX=manage -v /opt/cpd-cli-linux-EE-12.0.2-39/cpd-cli-workspace/olm-utils-workspace/work:/tmp/work icr.io/cpopen/cpd/olm- utils:latest\ERROR\ 2023-03-06T12:41:55.991666Z Command exception: Failed to start the olm-utils-play container: Error: runc: container\linux.go:370: starting container process caused: error adding seccomp filter rule for syscall bdflush: permission denied: OCI permission denied (exit status 126)\ERROR\ 2023-03-06T12:41:55.998354Z RunPluginCommand:Execution error: exit status 1 This

Error when login using CP4Data CLI command lineRead More

Podman pull images behind a corporate proxy

  • 26 Nov, 2025

Today, I set out to pull an image from Docker Hub on a RHEL 9 system using Podman. This step was part of my journey to install Watson Code Assistant for Z. While Podman is a great alternative to Docker on RHEL, the process had its quirks—especially when working with enterprise environments and specialized tools like Watson Code Assistant. In this post, I’ll share what worked, what didn’t, and some tips to make the setup smoother for anyone tackling the same challenge. I can simulate the error using podman pull: podman pull docker.io/library/orientdb:3.2.28 Trying to pull docker.io/library/orientdb:3.2.28... WARN0000 Failed, retrying in 1s ... (1/3). Error: initializing source docker://or

Podman pull images behind a corporate proxyRead More