docker_cleanup.sh 1.21 KB
Newer Older
1 2
#!/bin/bash

3
# ******************************************************************************
4
# Copyright 2017-2020 Intel Corporation
5 6 7 8 9 10 11 12 13 14 15 16 17 18
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ******************************************************************************

19 20 21 22 23 24
# list active docker containers
echo "Active docker containers..."
docker ps -a
echo

# clean up old docker containers
25
echo "Removing Exited docker containers..."
26
docker ps -a | grep Exited | cut -f 1 -d ' ' | xargs docker rm -f "${1}"
27 28 29 30
echo

#list docker images for ngraph
echo "Docker images for ngraph..."
31
docker images ngraph_*
32 33 34
echo

# clean up docker images no longer in use
35
echo "Removing docker images for ngraph..."
36
docker images -qa ngraph_* | xargs docker rmi -f "${1}"