Questions tagged [podman]

Podman is a daemonless container engine with a docker-compatible command line

66 questions
0
votes
1 answer

Podman fails to add container to a pod [firewalld, nftables]

Can't start a podman container nor can I add container to a pod on CentOS8. I've tried the usual actions, e.g.: Made sure I am starting with clean state: sudo podman system reset which has deleted all images, containers, etc. sudo podman run -dt…
mikitk
  • 1
  • 1
0
votes
1 answer

How can I forward IPv6 port 80/443 to a podman container?

I recently containerized my personal webserver. However, I've now noticed that it's no longer accessible over IPv6. Port mapping (-p 80:80 -p 443:443) only works for IPv4: https://github.com/containers/podman/issues/4323. So far I've managed to…
0
votes
0 answers

PiHole container on Podman fails to start with SELinux enabled on Fedora 31

I'm trying to get PiHole up and running using Podman on Fedora 31 Server. When I set SELinux to Permissive mode, and I use the following command, everything works perfectly. sudo podman run -d --name pihole \ -p 53:53/tcp -p 53:53/udp -p 80:80 -p…
0
votes
2 answers

Podman rootless journald logging

I'm trying to log to the host's systemd-journald from a rootless podman-container. When i run the container as root with the --privileged flag, i can read the logs from the container on the host with journalctl as expected. However, running the…
PManeCon
  • 1
  • 1
  • 1
0
votes
1 answer

Cannot build image container with Podman because of runtime error with invalid memory address

Dockerfile: FROM vault:latest RUN apk --no-cache add \ perl-utils Command I use: podman build -t vaultplugin vaultplugin.Dockerfile The error I am getting: panic: runtime error: invalid memory address or nil pointer dereference [signal…
jnbdz
  • 927
  • 5
  • 24
  • 46
-1
votes
1 answer

Mount container's filesystem on my host

I built some software in a container (using Podman) and would like to run the binary on my host. The binary is linked to some dynamic libraries that I don't have on my host. I figured that a quick hacky solution is to mount the container's…
1 2 3 4
5