-
Notifications
You must be signed in to change notification settings - Fork 508
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Buildx doesn't respect insecure registry configuration #2968
Comments
Have you tried removing the running docker buildx container |
Hi @Kraust, As you see I only have one builder, which is the default (not even a container). Anyways, this happen from all multiple of our systems, not just one (even from every DEV local WSL/Ubuntu). |
From the error it seems to be like network route error, not "insecure registry" config error. Insecure registries in dockerd mean both HTTP and HTTPS with insecure registry. |
Hi, There is no 443 port open on the registry. |
Same issue: #2712 Same temp solution: export DOCKER_BUILDKIT=0 |
Contributing guidelines
I've found a bug and checked that ...
Description
Hi,
Re-opening 2226, as the issue still exists.
See comments in the other ticket.
The attached logs/outputs are fresh.
Expected behaviour
Use port 80
Actual behaviour
Uses port 443
Buildx version
github.com/docker/buildx v0.17.1 257815a
Docker info
Builders list
Configuration
FROM our-registry/base-images/debian:latest
RUN echo "hello"
Build logs
Additional info
❯ cat /etc/docker/daemon.json
{
"insecure-registries":["http://our-registry", "our-registry"],
"registry-mirrors": ["http://our-registry"]
}
The text was updated successfully, but these errors were encountered: