Wasn't actually referencing the variable

This commit is contained in:
Joey Hafner 2022-08-18 10:48:10 -07:00
parent 296a157173
commit a4cdea25ca

View File

@ -5,6 +5,6 @@ do
CONTAINER_NAME=$(docker ps -aq --filter "id=$CONTAINER_ID" --format '{{.Names}}') # get the container's name
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 "$CONTAINER_MOUNTS" | grep /mnt/nas
echo $?
done