Function
displayLocationRemoteStack
cmd/compose/options.go:250–255
· cmd/compose/options.go::displayLocationRemoteStack
(dockerCli command.Cli, project *types.Project, options buildOptions)
Source from the content-addressed store, hash-verified
| 248 | } |
| 249 | |
| 250 | func displayLocationRemoteStack(dockerCli command.Cli, project *types.Project, options buildOptions) { |
| 251 | mainComposeFile := options.ProjectOptions.ConfigPaths[0] //nolint:staticcheck |
| 252 | if display.Mode != display.ModeQuiet && display.Mode != display.ModeJSON { |
| 253 | _, _ = fmt.Fprintf(dockerCli.Out(), "Your compose stack %q is stored in %q\n", mainComposeFile, project.WorkingDir) |
| 254 | } |
| 255 | } |
| 256 | |
| 257 | func confirmRemoteIncludes(dockerCli command.Cli, options buildOptions, assumeYes bool) error { |
| 258 | if assumeYes { |