This is an automated email from the ASF dual-hosted git repository.
wuzhiguo pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/bigtop-manager.git
The following commit(s) were added to refs/heads/main by this push:
new a78d6f79 BIGTOP-4440: Optimize the destroy function of
docker/containers/build.sh (#222)
a78d6f79 is described below
commit a78d6f7949f9eec85f54675de4906b3b4055e852
Author: timyuer <[email protected]>
AuthorDate: Sun Jun 15 14:06:01 2025 +0800
BIGTOP-4440: Optimize the destroy function of docker/containers/build.sh
(#222)
---
dev-support/docker/containers/build.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-support/docker/containers/build.sh
b/dev-support/docker/containers/build.sh
index 018f6d66..84803068 100755
--- a/dev-support/docker/containers/build.sh
+++ b/dev-support/docker/containers/build.sh
@@ -48,7 +48,7 @@ build() {
destroy() {
log "Destroy Containers!!!"
- docker rm -f $(docker ps -q --filter network=bigtop-manager --filter
"name=^bm-")
+ docker rm -f $(docker ps -aq --filter network=bigtop-manager --filter
"name=^bm-")
exit 0
}