-
Notifications
You must be signed in to change notification settings - Fork 143
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
Support transferring pre-built images when balena push
is used in local mode
#1468
Comments
[roman-mazur] This issue has attached support thread https://jel.ly.fish/#/support-thread~411105ad-53e0-49d1-bc35-16a92589519e |
In case this hint is helpful to anyone, I sometimes transfer images between my laptop and a balena device with the commands: # from laptop to device
docker save my_image | ssh my_device balena-engine load
# from device to laptop
ssh my_device balena-engine save my_image | docker load where "my_device" is an entry in the
I haven't yet used multi-arch images and I wonder how the commands above could be adapted in order to "select the correct arch variant". |
Connects to:
|
[shaunmulligan] This issue has attached support thread https://jel.ly.fish/#/ded1c61d-3cd4-4600-9d86-71da0880b440 |
[thgreasi] This issue has attached support thread https://jel.ly.fish/#/bd9c64b2-d60f-4596-a045-16db2d96350d |
[tmigone] This issue has attached support thread https://jel.ly.fish/#/76e99687-0a3e-4e59-9ef5-bd157fdfbf38 |
[cmfcruz] This issue has attached support thread https://jel.ly.fish/#/132cab21-904d-4535-adae-a4a3dbb8c296 |
It would be great if |
When users utilize
docker buildx
functionality to build multi-arch images that can work both on their dev machine and on the target device, they cannot easily refer to such pre-built images from docker-compose file.Currently, pre-built images must be published to some registry. And users don't have direct access to balena's registry.
The feature request is to transfer such pre-built images (using the correct arch variant) from the dev machine to the target device in local mode when
balena push
is executed.The text was updated successfully, but these errors were encountered: