112 likes
·
8.8K reads
4 comments
·Apr 5, 2022
Apr 5, 2022
Loved every bit of it!!
2
·
Author
·May 5, 2022
Some nits from @crazymax who is one of the core maintainers of the BuildKit project:
$ docker buildx create --name builder --use
$ docker buildx inspect builder --bootstrap
Can be replaced by
$ docker buildx create --name builder --use --bootstrap
Instead of crane to inspect the manifest, you can use buildx imagetools inspect with its new --format flag:
$ docker buildx imagetools inspect --format "{{json .}}" devopps/hello-world-multi-arch:v1
It will give you more info like manifest, image config, and buildinfo
1
·
·Apr 5, 2022
Apr 5, 2022
An awesome and insightful read 🤩💯 Great piece!!
·
·Apr 5, 2022
Apr 5, 2022
Great, well explained!
·