From c9bcbf71e262dfcc30d7a24a195fb629a977a000 Mon Sep 17 00:00:00 2001 From: Seiya Yazaki Date: Fri, 28 May 2021 14:52:51 +0900 Subject: [PATCH] Set mode=max to cache intermediate stages buildx caches layer only in the final stage by default. To speedup multi-stage Dockerfile build, better to set `mode=max`: https://docs.docker.com/engine/reference/commandline/buildx_build/#cache-to Signed-off-by: saiya --- docs/advanced/cache.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/advanced/cache.md b/docs/advanced/cache.md index 0c0592d..2180d03 100644 --- a/docs/advanced/cache.md +++ b/docs/advanced/cache.md @@ -41,7 +41,7 @@ jobs: push: true tags: user/app:latest cache-from: type=registry,ref=user/app:latest - cache-to: type=inline + cache-to: type=inline,mode=max ``` ## GitHub cache @@ -95,7 +95,7 @@ jobs: push: true tags: user/app:latest cache-from: type=local,src=/tmp/.buildx-cache - cache-to: type=local,dest=/tmp/.buildx-cache-new + cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max - # Temp fix # https://github.com/docker/build-push-action/issues/252