Replies: 1 comment
-
Sorry for being half a year later. For official CA you can do this on debian (especially on debian-slim) by apt-get update && apt-get -y install ca-certificates In your config you mention |
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
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, I'm trying to use docker buildx --push to build for multi arch and push to a insecure https registry, this is my example:
docker buildx create --name project-v4-builder --driver-opt network=host --config buildkitd.toml
The content of the config file it's something like this:
I run using this command:
docker buildx build --push --platform=linux/arm64,linux/amd64,linux/s390x,linux/ppc64le --tag tag_here -f Dockerfile.cross .
But I'm getting
tls: failed to verify certificate: x509: certificate signed by unknown authority
. btw I also have the insecure registry configured in my daemon.json fileBeta Was this translation helpful? Give feedback.
All reactions