From 3685647138d02c1e15a17fa59533dbd7a145fbb1 Mon Sep 17 00:00:00 2001 From: Awiteb Date: Thu, 23 May 2024 15:22:32 +0300 Subject: [PATCH] chore: Rename the update task to `update` Signed-off-by: Awiteb --- Justfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Justfile b/Justfile index 772a427..0d88515 100644 --- a/Justfile +++ b/Justfile @@ -9,8 +9,8 @@ @stop: sudo docker-compose rm -f -s -# Pull the new patch Forgejo version [aliases: u] -@update_patch: stop && run +# Pull the new patch and minor of Forgejo [aliases: u] +@update: stop && run sudo docker rmi -f $(sudo docker images -q -f reference=codeberg.org/forgejo/forgejo) # Restart the instance @@ -29,7 +29,7 @@ alias r := run [private] alias s := stop [private] -alias u := update_patch +alias u := update [private] alias b := backup