1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-20 13:59:40 +02:00

feat(libcompose): set RemoveVolume to false

This commit is contained in:
Anthony Lapenna 2018-06-20 18:20:16 +03:00
parent 413ab44dc0
commit 115c1608b9

View file

@ -87,5 +87,5 @@ func (manager *ComposeStackManager) Down(stack *portainer.Stack, endpoint *porta
return err
}
return proj.Down(context.Background(), options.Down{RemoveVolume: true, RemoveOrphans: true})
return proj.Down(context.Background(), options.Down{RemoveVolume: false, RemoveOrphans: true})
}