mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-20 08:35:09 +00:00
[FAB-8600]Clear hyperledger-related containers only
Change-Id: If45759c6db4b6e63aaadd1c86d31f1332a5aee53 Signed-off-by: alex <alexliusch@gmail.com>
This commit is contained in:
parent
2bbb0a85b3
commit
680ff01a5d
1 changed files with 2 additions and 2 deletions
|
|
@ -87,7 +87,7 @@ function askProceed () {
|
||||||
# Obtain CONTAINER_IDS and remove them
|
# Obtain CONTAINER_IDS and remove them
|
||||||
# TODO Might want to make this optional - could clear other containers
|
# TODO Might want to make this optional - could clear other containers
|
||||||
function clearContainers () {
|
function clearContainers () {
|
||||||
CONTAINER_IDS=$(docker ps -aq)
|
CONTAINER_IDS=$(docker ps -a |awk '($2 ~ /dev-peer.*.mycc.*/) {print $1}')
|
||||||
if [ -z "$CONTAINER_IDS" -o "$CONTAINER_IDS" == " " ]; then
|
if [ -z "$CONTAINER_IDS" -o "$CONTAINER_IDS" == " " ]; then
|
||||||
echo "---- No containers available for deletion ----"
|
echo "---- No containers available for deletion ----"
|
||||||
else
|
else
|
||||||
|
|
@ -99,7 +99,7 @@ function clearContainers () {
|
||||||
# specifically the following images are often left behind:
|
# specifically the following images are often left behind:
|
||||||
# TODO list generated image naming patterns
|
# TODO list generated image naming patterns
|
||||||
function removeUnwantedImages() {
|
function removeUnwantedImages() {
|
||||||
DOCKER_IMAGE_IDS=$(docker images | grep "dev\|none\|test-vp\|peer[0-9]-" | awk '{print $3}')
|
DOCKER_IMAGE_IDS=$(docker images|awk '($1 ~ /dev-peer.*.mycc.*/) {print $3}')
|
||||||
if [ -z "$DOCKER_IMAGE_IDS" -o "$DOCKER_IMAGE_IDS" == " " ]; then
|
if [ -z "$DOCKER_IMAGE_IDS" -o "$DOCKER_IMAGE_IDS" == " " ]; then
|
||||||
echo "---- No images available for deletion ----"
|
echo "---- No images available for deletion ----"
|
||||||
else
|
else
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue