So from the documentation here https://github.com/docker/buildx#--cache-fromnametypetypekeyvalue
obviously a good point about docker is the layer caching, when you specify a remote for the cache from and cache to, two questions
Thanks for that, do you always need to do docker buildx build or can the commands be forwarded through to docker build ? I'm immediately guessing, absolutely not. But just thought I would clarify
DOCKER_BUIDLKIT=1 docker build can import cache and supports creating images with inline cache. docker buildx install can replace the docker build with docker buildx build
So when you say docker buildx install reeplaces docker build what does that mean for the arguments that you usually pass to buildx, how they interpreted by docker build or how do you take advantage of the --cache-from --cache-to
Most helpful comment