From b3ad8f2b0abdaf7aa725c654bb98f6bc784ea238 Mon Sep 17 00:00:00 2001 From: Jason Swank Date: Sat, 22 Apr 2023 14:50:15 -0400 Subject: [PATCH] add pull recipe --- bin/cli | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bin/cli b/bin/cli index dfcad80..387bab0 100755 --- a/bin/cli +++ b/bin/cli @@ -33,6 +33,10 @@ persist: podman run -ti --userns=keep-id --name {{n}} {{image}} fi +# Pull the latest version of the container +@pull: + podman pull {{image}} >/dev/null 2>&1 + # Remove the persistent container @clean: podman rm -f {{n}} >/dev/null 2>&1