Run standalone/docker-compose.yml with Podman #30228
chopeen
started this conversation in
Show and tell
Replies: 2 comments
-
Useful experience. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Very helpful |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I followed the article Using Compose Files with Podman and installed
podman-compose
on a RHEL machine.podman-compose up -d
was working fine with docker-compose.yml, but the Milvusstandalone
container was not starting because of error like:Basically, it could not connect to the
etcd
host and it was trying to use regular DNS to resolve this name.--
Running
podman network inspect milvus
showed the following:"dns_enabled": false
is the problem's root cause.Installing
podman-plugins
to have thednsname
plugin fixed the issue.Source: configuring-podman-for-inter-container-communication
Beta Was this translation helpful? Give feedback.
All reactions