Use podman instead of docker.
This commit is contained in:
@@ -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" )
|
||||
|
||||
Reference in New Issue
Block a user