We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9741a5f commit 46a63d4Copy full SHA for 46a63d4
dactyl.sh
@@ -255,6 +255,11 @@ function checkDocker() {
255
error "Docker is not installed.\n\n\tPlease visit https://www.docker.com/products/docker-desktop for more information."
256
exit 1
257
fi
258
+
259
+ if ! docker image list &> /dev/null; then
260
+ error "Docker is not running. Please start docker and try again."
261
+ exit 1;
262
+ fi
263
}
264
265
# exit unless user responds with yes
0 commit comments