From b21266e0e0f0d34dcfa6c7743faa35acecfc3a77 Mon Sep 17 00:00:00 2001 From: Imbus <> Date: Tue, 20 Feb 2024 14:10:07 +0100 Subject: [PATCH] Justfile targets adjusted for cleaning podman with podman-clean --- Justfile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Justfile b/Justfile index 966fac9..eadfabd 100644 --- a/Justfile +++ b/Justfile @@ -28,4 +28,9 @@ clean: remove-podman-containers rm -rf frontend/node_modules rm -f ttime-server.tar.gz cd backend && make clean - @echo "Cleaned up!" \ No newline at end of file + @echo "Cleaned up!" + +# Cleans up everything related to podman, not just the project. Make sure you understand what this means. +[confirm] +podman-clean: + podman system reset --force \ No newline at end of file