From b67af4b482bca97310a0c4eee694f44d696c2366 Mon Sep 17 00:00:00 2001 From: Pallav Vasa Date: Sat, 17 May 2025 06:34:26 +0000 Subject: [PATCH] feat: add gitops function to remove podman containers --- gitops_router.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gitops_router.sh b/gitops_router.sh index 539c336..77ae656 100644 --- a/gitops_router.sh +++ b/gitops_router.sh @@ -85,6 +85,9 @@ clean) status) podman images ;; +remove) + podman rm "$args" + ;; *) log error "Unknown command: $command" exit 127