Skip to content

Commit

Permalink
🐛 Should to stop instead of down
Browse files Browse the repository at this point in the history
  • Loading branch information
jenssegers committed Apr 10, 2018
1 parent 6a365fc commit eeae7aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ func up(project project, daemon bool) error {
}

func down(project project) error {
cmd := exec.Command("docker-compose", "down")
cmd := exec.Command("docker-compose", "stop")
cmd.Dir = project.Path
cmd.Stdout = os.Stdout
cmd.Stdin = os.Stdin
Expand Down

0 comments on commit eeae7aa

Please sign in to comment.