danhuawang commented on code in PR #119:
URL:
https://github.com/apache/gravitino-playground/pull/119#discussion_r1899239127
##########
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:
@xunliu Add loop to remove images because sometimes there's two tags in
local.
```
docker images | grep hello-world
hello-world latest
ee301c921b8a 20 months ago 9.14kB
hello-world linux
ee301c921b8a 20 months ago 9.14kB
```
--
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]