Add License information in every source file or script.
[sim/o1-interface.git] / ntsimulator / scripts / clean.sh
1 #/bin/bash
2 ################################################################################
3 #
4 # Copyright 2019 highstreet technologies GmbH and others
5 #
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
9
10 #     http://www.apache.org/licenses/LICENSE-2.0
11
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17 ################################################################################
18
19 echo "Cleaning up..."
20
21 mapfile -t NTS_containers < <( docker ps -a --filter "label=NTS" --format "{{.ID}}" )
22
23 CONTAINERS=""
24
25 if [ ${#NTS_containers[@]} -gt 0 ]
26 then
27
28         for container in "${NTS_containers[@]}"
29         do
30                 CONTAINERS="$CONTAINERS $container"
31         done
32         echo "Cleaning up ontainers: $CONTAINERS"
33         docker kill $CONTAINERS > /dev/null 2>&1
34         docker rm $CONTAINERS > /dev/null 2>&1
35 fi
36
37 echo "Cleaning NTS Manager container"
38 docker kill NTS_Manager > /dev/null 2>&1
39 docker rm NTS_Manager > /dev/null 2>&1
40
41 echo "All cleaned up!"