pass All option to backend api.Service when length statuses is not equal to zero

Signed-off-by: 1arp <dekhijaegi@gmail.com>
This commit is contained in:
1arp 2024-02-08 03:45:47 +00:00 committed by Nicolas De loof
parent 4ce63f53f7
commit 3ba66453d2
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ func runPs(ctx context.Context, dockerCli command.Cli, backend api.Service, serv
containers, err := backend.Ps(ctx, name, api.PsOptions{
Project: project,
All: opts.All,
All: opts.All || len(opts.Status) != 0,
Services: services,
})
if err != nil {