Replies: 1 comment 4 replies
-
Assuming you are using quay.io/podman/stable? In that case we are using --network=host by default You would have to add |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Issue Description
I am running a gitea runner workflow, and all the actions are run on a podman container. In one of the actions I create container images and push them to a registry using podman, and then I use podman-compose to start some of the containers to execute tests. Should I run only one container (redis or openldap), all works. Should I, instead, run both containers at the same time (redis and openldap), then they will both get stuck at "starting". I have tested other container combinations (postgresql and ldap, etc.) and the outcome is the same.
Trying to simplify the situation, instead of podman-compose-in-podman I am running two containers as podman-in-podman, by running
inside the container. I am getting an error from one of the containers stating
The container running all these commands is started with the options
--device /dev/fuse --device /dev/net/tun --security-opt=unmask=/proc/sys
and a custom network that looks like:This might well be a configuration issue, but I have been looking around for days and I do not manage to see what I am doing wrong, if anything.
Steps to reproduce the issue
Run the two podman commands explained in the description.
Describe the results you received
one container starts, one container fails to start
Describe the results you expected
both containers start
podman info output
inside the container, I get
in the machine running the wrapping container, I get
Podman in a container
Yes
Privileged Or Rootless
Rootless
Upstream Latest Release
Yes
Additional environment details
Additional environment details
Additional information
Additional information like issue happens only occasionally or issue happens with a particular architecture or on a particular setting
Beta Was this translation helpful? Give feedback.
All reactions