CrazyMax
CrazyMax
@neumann-nico Looking at the logs, an SSH-based auth is required for your submodules: ``` fatal: clone of '[email protected]:[...]/[...].git' ``` We do support this https://github.com/moby/buildkit/pull/1782 and I think you just have...
We also need to document git context auth in our docs: https://docs.docker.com/build/building/context/#git-repositories
``` /usr/bin/git config --global --add url.https://github.com/.insteadOf [email protected]: /usr/bin/git config --global --add url.https://github.com/.insteadOf org-[...]@github.com: ``` Looks like this is what we need in BuildKit. cc @tonistiigi
@kalanyuz @keleutos2022 While waiting for https://github.com/docker/build-push-action/issues/737#issuecomment-1336503241 to be implemented on buildkit you can use the checkout action and path context as shown here: https://github.com/docker/build-push-action#path-context
> We also need to document git context auth in our docs: https://docs.docker.com/build/building/context/#git-repositories this is now documented: https://docs.docker.com/build/building/context/#private-repositories For https://github.com/docker/build-push-action/issues/737#issuecomment-1336503241, will follow-up on BuildKit repo. Closing in the meantime.
Same as https://github.com/docker/build-push-action/issues/977#issuecomment-1752100260 but looking at your Dockerfile: https://github.com/NCAR/micm/blob/292-add-a-docker-image-publish/docker/Dockerfile.publish ```dockerfile FROM fedora:37 RUN dnf -y update \ && dnf -y install \ cmake \ gcc-c++ \ gdb \ git \...
> Is there any chance it can be supported? I don't think we are going to add this kind of attribute but I'm curious about your use case to disable...
> Slow image loading with `load: true` Status of uploading build result to the Docker store when using the container driver will be available on next Buildx 0.12 release: https://github.com/docker/buildx/pull/1994...
> Correct, but why? The internal Docker builder is fast to load images, presumably because it uses some internal routine to transfer the image. Why is the container builder so...
> `Error: Recreating ce3fc36b598e_my-service ... error for test-service Cannot create container for service test-service: No command specified` These logs are not enough. Please post link to your repo if possible...