summaryrefslogtreecommitdiffstats
path: root/fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/test-tools/wamr-ide/VSCode-Extension/resource/scripts/destroy.sh
blob: 41faf3eafd8b77c4e55d0901e33ebc9ee63dd1aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/bin/bash

# Copyright (C) 2019 Intel Corporation.  All rights reserved.
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception

set -e

docker -v>/dev/null
if [ $? -ne 0 ]; then
    echo "\nDocker is not installed, please install docker firstly.\n"
    exit 1
fi

docker images>/dev/null
if [ $? -ne 0 ]; then
    echo "\nDocker service is not running, please start your docker service firstly.\n"
    exit 2
fi

echo "Prepare to clean up the docker containers..."

if test ! -z "$(docker ps -a | grep wasm-toolchain-ctr)"; then
    echo "Stopping and removing wasm-toolchain-ctr container..."
    docker rm -f wasm-toolchain-ctr>/dev/null
    echo "Done."
fi

if test ! -z "$(docker ps -a | grep wasm-debug-server-ctr)"; then
    echo "Stopping and removing wasm-debug-server-ctr container..."
    docker rm -f wasm-debug-server-ctr>/dev/null
    echo "Done."
fi

echo "Clean up docker containers successfully."