Commit 0bb78fe6 authored by Zach Loafman's avatar Zach Loafman

Merge pull request #9042 from zmerlynn/neuter-rmi-complaint

Don't die if the "docker rmi" fails
parents f3b4b1aa 8f70779b
......@@ -633,7 +633,7 @@ function kube::release::create_docker_images_for_server() {
rm -rf ${docker_build_path}
kube::log::status "Deleting docker image ${docker_image_tag}"
"${DOCKER[@]}" rmi ${docker_image_tag}
"${DOCKER[@]}" rmi ${docker_image_tag} 2>/dev/null || true
) &
done
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment