We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6735220 + 3bbcc3d commit 36c2947Copy full SHA for 36c2947
cmd/compose/compose.go
@@ -212,6 +212,7 @@ func (o *projectOptions) toProjectOptions(po ...cli.ProjectOptionsFn) (*cli.Proj
212
cli.WithName(o.ProjectName))...)
213
}
214
215
+// PluginName is the name of the plugin
216
const PluginName = "compose"
217
218
// RunningAsStandalone detects when running as a standalone program
pkg/compose/build_classic.go
@@ -231,6 +231,7 @@ func imageBuildOptions(options buildx.Options) dockertypes.ImageBuildOptions {
231
return dockertypes.ImageBuildOptions{
232
Tags: options.Tags,
233
NoCache: options.NoCache,
234
+ Remove: true,
235
PullParent: options.Pull,
236
BuildArgs: toMapStringStringPtr(options.BuildArgs),
237
Labels: options.Labels,
0 commit comments