summaryrefslogtreecommitdiffstats
path: root/docker/remove_hc2vpp_containers.sh
diff options
context:
space:
mode:
Diffstat (limited to 'docker/remove_hc2vpp_containers.sh')
-rwxr-xr-xdocker/remove_hc2vpp_containers.sh11
1 files changed, 0 insertions, 11 deletions
diff --git a/docker/remove_hc2vpp_containers.sh b/docker/remove_hc2vpp_containers.sh
deleted file mode 100755
index c1fbf705a..000000000
--- a/docker/remove_hc2vpp_containers.sh
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/bash
-
-ids=$(docker ps -aq --filter ancestor=hc2vpp)
-
-# Stop all hc2vpp based containers
-echo "Stopping containers: $ids"
-docker stop $ids
-
-# Delete all hc2vpp based containers
-echo "Removing containers: $ids"
-docker rm $ids