Replies: 1 comment 1 reply
-
First we just call the option But more importantly there is no way to have working container name resolution with macvlan networks because our dns server design does not allow for that. The dns server runs on the host namespace and there is no way for container host communication with macvlan so this will never work with podman I would say. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm trying to migrate a
docker-compose
template I've been running (withdocker
) for years topodman-compose
/podman
. In it I run several containers with a macvlan network so that they are reachable from other machines on my network.The network was defined like this:
but this fails when I try to apply it with
podman-compose
:Running that command directly gives the following error message:
If I remove the
macvlan_mode: "bridge"
option, everything seems to work except that containers nor the host can resolve any of the container names.I'm guessing the bridge option is what made the resolution possible on docker? Is this possible with podman?
Beta Was this translation helpful? Give feedback.
All reactions