You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am usually using docker buildx ... --push . to build and push immediately. It seems this is not working with k3d registry. I get the following error
> exporting to image:
------
ERROR: failed to solve: failed to push k3d-registry.localhost:12345/mycontainer:latest: failed to do request: Head "https://k3d-registry.localhost:12345/v2/mycontainer/blobs/sha256:12345678123567128351627841267531627835162783": dial tcp: lookup k3d-registry.localhost on 123.456.789.0: no such host
My Workaround: using docker buildx ... --load . and then a manual push works.
It would be great if docker buildx could directly push to the k3d registry, which is probably much quicker for local development.
I guess it is already possible, but somehow hard to find how to do it.
The text was updated successfully, but these errors were encountered:
I just was able to push using the default builder (with driver "docker").
There seems to have been a confusion for myself - I've used driver "docker-container" all the time, which is not only slower, but also has some further missing support like this.
Lovely that it already works. Still it probably would be great to add a section to the documentation about this
Hi there,
I am usually using
docker buildx ... --push .
to build and push immediately. It seems this is not working with k3d registry. I get the following errorMy Workaround: using
docker buildx ... --load .
and then a manual push works.It would be great if docker buildx could directly push to the k3d registry, which is probably much quicker for local development.
I guess it is already possible, but somehow hard to find how to do it.
The text was updated successfully, but these errors were encountered: