From aa6d5ebbfb6d4ab1aab3ef38836e1be527a59b38 Mon Sep 17 00:00:00 2001
From: null <null>
Date: Sat, 17 May 2025 16:58:36 +0000
Subject: [PATCH] feat: add gitops command to remove podman images

---
 gitops_router.sh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/gitops_router.sh b/gitops_router.sh
index b891769..cbfcb22 100644
--- a/gitops_router.sh
+++ b/gitops_router.sh
@@ -171,6 +171,7 @@ update)
 clean) clean_images ;;
 status) podman images ;;
 remove) remove_containers "${args[@]}" ;;
+rmi) podman rmi "${args[@]}" ;;
 *)
   log ERROR "Unknown command: '$cmd'"
   exit 127