MCPcopy Index your code
hub / github.com/docker/cli / propertyWarnings

Function propertyWarnings

cli/command/stack/loader.go:76–83  ·  view source on GitHub ↗
(properties map[string]string)

Source from the content-addressed store, hash-verified

74}
75
76func propertyWarnings(properties map[string]string) string {
77 msgs := make([]string, 0, len(properties))
78 for name, description := range properties {
79 msgs = append(msgs, fmt.Sprintf("%s: %s", name, description))
80 }
81 sort.Strings(msgs)
82 return strings.Join(msgs, "\n\n")
83}
84
85// getConfigDetails parse the composefiles specified in the cli and returns their ConfigDetails
86func getConfigDetails(composefiles []string, stdin io.Reader) (composetypes.ConfigDetails, error) {

Callers 1

loadComposeFileFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…