Adapt to podman which doesn't replace running container by default.

This commit is contained in:
Stephane Gourichon
2025-08-15 19:07:01 +02:00
parent b32855e3bc
commit 911a29dbdf
2 changed files with 4 additions and 2 deletions

View File

@@ -51,6 +51,7 @@ do
cd $PATH_OF_CONTAINER
podman-compose --no-ansi pull || { fail_one "pull" ; continue ; }
podman-compose --no-ansi build --no-cache || { fail_one "build" ; continue ; }
podman-compose --no-ansi build || { fail_one "build" ; continue ; }
podman-compose --no-ansi down || { fail_one "down" ; continue ; }
podman-compose --no-ansi up -d || { fail_one "switch to newly built container" ; continue ; }
done