Use podman instead of docker.

This commit is contained in:
Stephane Gourichon
2025-08-15 17:40:10 +02:00
parent 4076de240c
commit 2b445b9457
3 changed files with 12 additions and 12 deletions

View File

@@ -18,9 +18,9 @@ while IFS="" read -u 3 -r SERVICE_PATH
do
pushd "${SERVICE_PATH%/*}"
pwd
docker-compose pull || { fail_one "pull" ; continue ; }
docker-compose build --no-cache || { fail_one "build" ; continue ; }
docker-compose up -d || { fail_one "switch to newly built container" ; continue ; }
podman-compose pull || { fail_one "pull" ; continue ; }
podman-compose build --no-cache || { fail_one "build" ; continue ; }
podman-compose up -d || { fail_one "switch to newly built container" ; continue ; }
popd
done 3< <( find . -iname "compose.yaml" )