-
Notifications
You must be signed in to change notification settings - Fork 495
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
Load image into buildx builder instance #847
Comments
@crazy-max is there any scope for the By switching to using the |
Thanks @crazy-max. @tonistiigi also discussed with me in the buildkit Slack channel and helped me understand where the capabilities are and aren't. If there's plan to support loading images into buildx builders in the future it'd be great to keep this issue open. Or if that is not part of the plan, please close. |
@AlekSi I've read the other issues but it is unclear where it's going. Is it closed as won't fix? Just so I understand if this is likely to be something in the future or not. Thanks! |
I don't know; I'm just a user with this or a similar problem, doing a cross-linking. :) |
This is a bit of an issue for containers built with Nix as well, and makes docker/build-push-action@v2 less than useful |
@leighmcculloch could you tell me please, have you found a way to overcome this issue? I want to do almost the same thing, but between different GitHub jobs. |
@mathbunnyru I found no way to do this with What I ended up doing was using |
Got it, thank you. I ended up using ARM runners for GitHub actions and using |
Adjust the nightly Docker testing script to push (and pull) `nightly` tags of the images. This incidentally makes the chapel-gasnet and chapel-gasnet-smp images build off of the just-built Chapel base image. Previously it was building off of the `latest` tag from the last release, not accessing the local copy of `latest` due to [behavior of the buildx builder](docker/buildx#847). While here, adjust formatting of `util/cron/test-docker.bash` script for clarity. Resolves Cray/chapel-private#6436. [reviewed by @arezaii , thanks!] Testing: - [x] manual run succeeds and pushes `nightly` images on chapelmac-m1 - [x] build exits with error if Chapel base image can't build - [x] (pre-merge reminder) update Dockerhub page to note the meaning of the `nightly` tag
I've built an image using docker buildx build that I exported to a file, and for a subsequent build that's running on another machine I need to import/load that first image into the builder so it has access to it.
As far as I can tell there is no way to tell
docker load -i image
to load the image into the buildx builder.This seems like a missing feature in the buildx functionality that would be valuable for builds that depend on local images that need to be loaded when a registry cannot be used for the intermediary image.
The text was updated successfully, but these errors were encountered: