Skip to content

Commit

Permalink
Merge pull request #30 from paramah/feature/down-with-volumes
Browse files Browse the repository at this point in the history
Restored removing volumes on 'docker down'
  • Loading branch information
vertisan committed Oct 6, 2023
2 parents 52acf9b + 3ab7ebf commit d6d71b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/modules/compose/compose.go
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ func ExecComposerBuild(ctx *context.LedoContext, command cli.Context) {
func ExecComposerDown(ctx *context.LedoContext) {
PrintCurrentMode(ctx)
args := ctx.ComposeArgs
args = append(args, "down")
args = append(args, "down", "--volumes")
ctx.ExecCmd(ctx.GetRuntimeCompose(), args[0:])
}

Expand Down

0 comments on commit d6d71b5

Please sign in to comment.