mirror of
https://github.com/katanemo/plano.git
synced 2026-04-25 00:36:34 +02:00
Fix compatibility issues with podman system (#415)
- "dokcer inspect" doesn't return State/Status if container is not running - "docker remove" is not a command supported by podman - "docker logs" expect -f to be passed before container name
This commit is contained in:
parent
1bbc5d2233
commit
ae6b2bef59
2 changed files with 7 additions and 4 deletions
|
|
@ -121,7 +121,7 @@ def stop_arch():
|
|||
["docker", "stop", ARCHGW_DOCKER_NAME],
|
||||
)
|
||||
subprocess.run(
|
||||
["docker", "remove", ARCHGW_DOCKER_NAME],
|
||||
["docker", "rm", ARCHGW_DOCKER_NAME],
|
||||
)
|
||||
|
||||
log.info("Successfully shut down arch gateway service.")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue