From dd4e3ab09c8e7f64093d8184d33c581a9b2f0b3c Mon Sep 17 00:00:00 2001 From: dvdksn Date: Fri, 20 Mar 2026 15:52:01 +0100 Subject: [PATCH] docs: remove incorrect statement about user-defined function references in Bake The claim that user-defined functions cannot reference other user-defined functions was incorrect. Remove the misleading line. Fixes #23826 --- content/manuals/build/bake/funcs.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/content/manuals/build/bake/funcs.md b/content/manuals/build/bake/funcs.md index 3d655e8e6e1f..e99236d63c7f 100644 --- a/content/manuals/build/bake/funcs.md +++ b/content/manuals/build/bake/funcs.md @@ -109,8 +109,6 @@ $ docker buildx bake --print webapp You can make references to [variables](./variables) and standard library functions inside your functions. -You can't reference user-defined functions from other functions. - The following example uses a global variable (`REPO`) in a custom function. ```hcl {title=docker-bake.hcl}