From 72f745723660cd549b80615dd45b6d7f81148ce1 Mon Sep 17 00:00:00 2001 From: Jordi Gil Date: Tue, 28 Jan 2025 08:13:21 -0500 Subject: [PATCH] Added Docker field to the Application spec Signed-off-by: Jordi Gil --- .../cloud-foundry-application-discovery/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/enhancements/assets-generation/cloud-foundry-application-discovery/README.md b/enhancements/assets-generation/cloud-foundry-application-discovery/README.md index b5ceb16..4d5cbaa 100644 --- a/enhancements/assets-generation/cloud-foundry-application-discovery/README.md +++ b/enhancements/assets-generation/cloud-foundry-application-discovery/README.md @@ -313,6 +313,8 @@ type Application struct { StartupTimeout *uint `json:"startupTimeout,omitempty"` // BuildPacks capture the buildpacks defined in the CF application manifest. BuildPacks []string `json:"buildPacks,omitempty"` + // Docker captures the Docker specification in the CF application manifest. + Docker *Docker `json:"docker,omitempty"` } ```