This commit is contained in:
Your Name
2025-05-03 16:41:53 +12:00
parent 3a02933bab
commit f00523d149
2 changed files with 4 additions and 1 deletions

View File

@ -16,6 +16,9 @@ if ! docker volume ls | grep -q "^${VOLUME_NAME} "; then
docker volume create "${VOLUME_NAME}"
fi
if ! docker volume inspect "${VOLUME_NAME}" &>/dev/null; then
die "Failed to create volume ${VOLUME_NAME}"
fi
# Test Docker
_check_docker_installed || die "Docker test failed, aborting installation..."