mirror of
https://github.com/rancher/os.git
synced 2025-05-10 09:05:02 +00:00
10 lines
271 B
Bash
Executable File
10 lines
271 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
|
|
|
|
docker rmi $(docker images --format "{{.Repository}}:{{.Tag}}" | grep rancher) || true
|
|
docker rmi $(docker images --filter dangling=true -q) ||true
|