mirror of
https://github.com/docker/compose.git
synced 2026-08-28 12:23:49 +00:00
Add order to down command
Signed-off-by: Ulysses Souza <ulyssessouza@gmail.com>
This commit is contained in:
parent
4270f383a7
commit
7e4cfc0e3b
6 changed files with 251 additions and 61 deletions
|
|
@ -62,6 +62,11 @@ func CreatedEvent(ID string) Event {
|
|||
return NewEvent(ID, Done, "Created")
|
||||
}
|
||||
|
||||
// StoppingEvent stops a new Removing in progress Event
|
||||
func StoppingEvent(ID string) Event {
|
||||
return NewEvent(ID, Working, "Stopping")
|
||||
}
|
||||
|
||||
// RemovingEvent creates a new Removing in progress Event
|
||||
func RemovingEvent(ID string) Event {
|
||||
return NewEvent(ID, Working, "Removing")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue