Questions tagged [podman]

Podman is a daemon-less container engine for developing, managing, and running OCI Containers on your Linux System. Containers can either be run as root or in rootless mode.

Library and tool for running OCI-based containers in Pods

Libpod provides a library for applications looking to use the Container Pod concept, popularized by Kubernetes. Libpod also contains the Pod Manager tool (Podman). Podman manages pods, containers, container images, and container volumes.

Overview and scope

At a high level, the scope of libpod and Podman is the following:

  • Support multiple image formats including the OCI and Docker image formats.
  • Support for multiple means to download images including trust & image verification.
  • Container image management (managing image layers, overlay filesystems, etc).
  • Full management of container lifecycle
  • Support for pods to manage groups of containers together
  • Resource isolation of containers and pods.
  • Support for a Docker-compatible CLI interface through Podman.
  • Integration with CRI-O to share containers and backend code.
696 questions
0
votes
2 answers

Start Server (WebSphere) as a build step with buildah/podman to configure it

In docker I can just boot the server (WebSphere) as a build step and start configuring it via it's jython SOAP API. I'm trying convert my Dockerfile into a shell script using buildah to create the container instead of docker build. Is there an easy…
2Fast2BCn
  • 912
  • 6
  • 10
0
votes
3 answers

kubernetes installation on RHEL8 Fatal:docker.service not found

I am trying to install kubernetes on aws instance(RHEL8) but while running kubeadm init it gives me back docker.service not found. I did some digging and I found that The docker package is not shipped or supported by Red Hat for Red Hat …
0
votes
0 answers

Cannot `ssh` from container with `openvpn`

Basic setup Using: Fedora 30, fully upgraded (kernel 5.1.19) Podman 1.4.4 I have this Dockerfile: FROM fedora:30 ENV LANG C.UTF-8 RUN dnf upgrade -y \ && dnf install -y \ openssh-clients \ openvpn \ slirp4netns \ …
Peque
  • 13,638
  • 11
  • 69
  • 105
-1
votes
0 answers

podman image build - gives consistent error

I have tried to build images with four different applications in alpinelinux over the past three weeks, and I always get the same error: error running container: from /usr/bin/crun creating container for [/bin/sh -c apk add curl]: sd-bus call:…
Bill
  • 1
  • 3
-1
votes
0 answers

podman (ubuntu os running in docker container) failing to build a docker container

I am facing an issue with podman installed in a ubuntu docker container (no docker sock mounted). root@92081d12aae0:/temp/docker# podman --version podman version 3.4.4 root@92081d12aae0:/temp/docker# I am getting the following error while trying to…
S1c0r4x
  • 47
  • 2
  • 6
-1
votes
1 answer

How to run KIND with podman in a container for CI

I am trying to set up a container image for my CI which is supposed to serve all tools needed for the pipeline to run. The idea is to use a podman image quay.io/podman/stable and install KIND and other dependencies. This image is then used by the…
Daniel
  • 71
  • 5
-1
votes
1 answer

Copy a file between containers

I'm looking for a way to copy a file from container A to container B within a Dockerfile. Inside the Dokerfile I write this code but it fails: COPY containersource:/mypath/filename.properties containerdest:/path/cfg/
Alex
  • 187
  • 1
  • 9
-1
votes
0 answers

How to access Podman-CLI on Windows

Due to the restrictions on my internet connection, I installed podman-desktop-airgap-1.2.1. The installation was successful and Podman Desktop works like a charm. However, I cannot run podman commands neither from the command line nor from the…
simon_tulia
  • 396
  • 1
  • 6
  • 22
-1
votes
0 answers

Getting error while running skaffold run on Mac m1

I am trying to run skaffold command: skaffold run -f skaffold.yaml --platform=linux/amd64, But I am getting the following error : invalid skaffold config: getting minikube env: running [/opt/homebrew/bin/minikube docker-env --shell none -p minikube…
Shubham Gupta
  • 19
  • 1
  • 4
-1
votes
1 answer

Unable to connect to SQL server using Podman

I am using podman to host and run mysql server. I have defined and created a container using the following terminal command: podman run --name techBlog -e MYSQL_ROOT_PASSWORD='my-password' -e MYSQL_DATABASE='blog_db' -d mysql:latest but when I…
S-coding
  • 1
  • 2
-1
votes
2 answers

podman pull on win 10 fails with temporary failure in name resolution

EDIT issues pulling images on podman windows 10 wslv2 podman machine start Starting machine "podman-machine-default" API forwarding listening on: npipe:////./pipe/docker_engine Docker API clients default to this address. You do not need to set…
luckybird
  • 61
  • 6
-1
votes
2 answers

committed image fails to render desktop as a container

i am attempting to run a windows GUI app in a container on Linux. The intent is to protect an ancient windows app that is no longer supported. So i get a Red Hat developer subscription, install RHEL 8.6 with container tools, run the universal base…
Blaarfengard
  • 17
  • 1
  • 3
-1
votes
1 answer

Stop all container's with specific string in name using PODMAN

I have to stop all container's with specific string in name. For example there is 4 container's with name's : apache1 apache2 apache3 jboos I try to stop only this with "apache" in the name. Is there any native way in PODMAN to stop all containers…
-1
votes
1 answer

Unable to use --pod option with podman

I'm running podman on CentOS, and I get an error message when I use the --pod option. [user@server ~]$ podman pod create -n hello [user@server ~]$ podman run --pod hello hello-world ERRO[0035] error starting some container dependencies ERRO[0035]…
Khane
  • 31
  • 1
  • 6
-1
votes
1 answer

podman/Docker container with /var/www/html/ content so i can read from host the test.html file in /var/www/html

i am trying to create a running container and inside that container i want to give a content to test.html which should be in /var/www/html. I should do it by echo command inside the container. Problem is that even after downloading nginx container,…
igorov
  • 1
  • 2
1 2 3
46
47