mirror of
https://github.com/rancher/os.git
synced 2025-04-28 03:20:50 +00:00
11 lines
307 B
Bash
Executable File
11 lines
307 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
cd $(dirname $0)/..
|
|
rm -rf build dist bin images/*/build state
|
|
rm -rf ./scripts/images/openstack/dist
|
|
rm -rf ./scripts/images/vmware/dist
|
|
|
|
docker rmi $(docker images --format "{{.Repository}}:{{.Tag}}" | grep rancher) || true
|
|
docker rmi $(docker images --filter dangling=true -q) ||true
|