This commit is contained in:
nora 2022-08-30 21:44:34 +02:00
parent 6b5e8edce3
commit 96a8746f4c
3 changed files with 7 additions and 8 deletions

View file

@ -3,7 +3,7 @@ NET_NAME="internal"
if docker network inspect "$NET_NAME" > /dev/null 2>&1 ;
then
echo "Network $NET_NAME exists already...";
else
else
echo "Creating network $NET_NAME..."
docker network create "$NET_NAME"
fi