mirror of
https://github.com/xpipe-io/xpipe.git
synced 2026-05-03 19:30:31 +00:00
Fix podman state display
This commit is contained in:
@@ -47,7 +47,7 @@ public class PodmanCmdStore
|
||||
return l.stream()
|
||||
.map(s -> {
|
||||
boolean running =
|
||||
s.getStatus().startsWith("running") || s.getStatus().startsWith("up");
|
||||
s.getStatus().startsWith("running") || s.getStatus().startsWith("up") || s.getStatus().startsWith("Up");
|
||||
var c = PodmanContainerStore.builder()
|
||||
.cmd(getSelfEntry().ref())
|
||||
.containerName(s.getName())
|
||||
|
||||
Reference in New Issue
Block a user