From 9a0419db44c76d6a3233c8caba8c08093bd9fea4 Mon Sep 17 00:00:00 2001 From: David Karlsson <35727626+dvdksn@users.noreply.github.com> Date: Thu, 7 Mar 2024 17:47:53 +0100 Subject: [PATCH] docs: add type=tmpfs to run mounts overview Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com> --- frontend/dockerfile/docs/reference.md | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/dockerfile/docs/reference.md b/frontend/dockerfile/docs/reference.md index d5926f561177..b7ec6d0408fe 100644 --- a/frontend/dockerfile/docs/reference.md +++ b/frontend/dockerfile/docs/reference.md @@ -669,6 +669,7 @@ The supported mount types are: | ---------------------------------------- | --------------------------------------------------------------------------------------------------------- | | [`bind`](#run---mounttypebind) (default) | Bind-mount context directories (read-only). | | [`cache`](#run---mounttypecache) | Mount a temporary directory to cache directories for compilers and package managers. | +| [`tmpfs`](#run---mounttypetmpfs) | Mount a `tmpfs` in the build container. | | [`secret`](#run---mounttypesecret) | Allow the build container to access secure files such as private keys without baking them into the image. | | [`ssh`](#run---mounttypessh) | Allow the build container to access SSH keys via SSH agents, with support for passphrases. |