This message was deleted.
# general
a
This message was deleted.
c
Localhost in a container is not the same thing as localhost on the node. Remember that unless you use host networking, each container has its own virtual interface with a unique IP and loopback interface.
Don't use localhost if you want to be able to connect to it from somewhere else, including containers.
This is just basic container networking stuff
i
got it . Thanks . What is best workaround if i have to connect to local registry runing as docker container from k3s (running via k3d) ?
c
Listen on the wildcard address (0.0.0.0) and use your host IP as the registry address.
👍 1