Skip to content

Commit

Permalink
Merge pull request #463 from kool-dev/fix_status
Browse files Browse the repository at this point in the history
Show not running containers on kool status
  • Loading branch information
fabriciojs authored May 5, 2023
2 parents c716443 + a8d7286 commit 3b5acab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions commands/status.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ func NewKoolStatus() *KoolStatus {
checker.NewChecker(defaultKoolService.shell),
network.NewHandler(defaultKoolService.shell),
environment.NewEnvStorage(),
builder.NewCommand("docker", "compose", "ps", "--services"),
builder.NewCommand("docker", "compose", "ps", "-q"),
builder.NewCommand("docker", "ps", "-a", "--format", "{{.Status}}|{{.Ports}}"),
builder.NewCommand("docker", "compose", "ps", "--all", "--services"),
builder.NewCommand("docker", "compose", "ps", "--all", "--quiet"),
builder.NewCommand("docker", "ps", "--all", "--format", "{{.Status}}|{{.Ports}}"),
shell.NewTableWriter(),
}
}
Expand Down

0 comments on commit 3b5acab

Please sign in to comment.