-
Notifications
You must be signed in to change notification settings - Fork 612
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
multi-platform #448
Merged
Merged
multi-platform #448
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AkihiroSuda
force-pushed
the
multiplat
branch
6 times, most recently
from
October 22, 2021 10:03
306d4f9
to
738cefe
Compare
AkihiroSuda
force-pushed
the
multiplat
branch
4 times, most recently
from
October 22, 2021 10:23
137e409
to
7fbed71
Compare
AkihiroSuda
force-pushed
the
multiplat
branch
from
October 22, 2021 10:46
7fbed71
to
8b12d8c
Compare
ktock
reviewed
Oct 22, 2021
ktock
reviewed
Oct 22, 2021
ktock
reviewed
Oct 22, 2021
AkihiroSuda
force-pushed
the
multiplat
branch
from
October 24, 2021 05:51
8b12d8c
to
f578652
Compare
Closed
See `docs/multi-platform.md` - [X] image convert (not new in new this commit) - [X] image inspect - [X] rmi - [X] pull - [X] push - [X] load - [X] save - [X] run - [X] commit - [X] build - [X] compose - [X] docs - [X] tests Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
AkihiroSuda
force-pushed
the
multiplat
branch
from
October 24, 2021 06:20
f578652
to
0be0b06
Compare
ktock
approved these changes
Oct 25, 2021
This was referenced Oct 25, 2021
Will it also work when running inside lima on MacOS ? |
Yes, of course. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Multi-platform
nerdctl can execute non-native container images using QEMU.
e.g., ARM on Intel, and vice versa.
Preparation: Register QEMU to
/proc/sys/fs/binfmt_misc
The
tonistiigi/binfmt
container must be executed with--privileged
.See also https://github.com/tonistiigi/binfmt
Usage
Pull & Run
Build & Push
$ nerdctl build --platform=amd64,arm64 --output type=image,name=example.com/foo:latest,push=true .
Or
Compose
See
examples/compose-multi-platform
Fix #103
Fix #280