Add automatic bw-docker network removal between each try

This commit is contained in:
Théophile Diot 2023-07-04 16:19:27 -04:00
parent d6407b8186
commit fccb25bee6
No known key found for this signature in database
GPG key ID: E752C80DB72BB014

View file

@ -282,6 +282,15 @@ do
manual=0
echo " "
echo "💾 Removing bw-docker network ..."
docker network rm bw-docker
if [ $? -ne 0 ] ; then
echo "💾 Network removal failed ❌"
exit 1
fi
done
end=1