xunliu commented on code in PR #119:
URL:
https://github.com/apache/gravitino-playground/pull/119#discussion_r1899231567
##########
playground.sh:
##########
@@ -35,6 +35,9 @@ testDocker() {
echo "ERROR: There was an issue running the hello-world container. Please
check your Docker installation."
exit 1
fi
+ for containerId in $(docker ps -a | grep hello-world | awk '{print $1}'); do
+ docker rm $containerId
Review Comment:
Please add `docker rmi hello-world:latest` here.
and modify `docker run --pull always hello-world >/dev/null 2>&1` to `docker
run --pull always hello-world:latest >/dev/null 2>&1`
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]