Try again

This commit is contained in:
Joey Hafner 2022-08-18 10:49:56 -07:00
parent d73103213b
commit 3e6194821a

View File

@ -6,5 +6,9 @@ do
CONTAINER_MOUNTS=$(docker inspect --format '{{range .Mounts}}{{println .Source}}{{end}}' $CONTAINER_ID) # print the container's volume mounts
echo "======== CHECKING $CONTAINER_NAME ========"
echo "$CONTAINER_MOUNTS" | grep /mnt/nas
echo $?
if $?; then
echo "NAS DEPENDENT"
else
echo "NOT NAS DEPENDENT"
fi
done