Files
bch-dex/production/docker/cleanup-images.sh
T
2022-02-23 05:51:12 -08:00

6 lines
115 B
Bash
Executable File

#!/bin/bash
# Remove all untagged docker images.
docker rmi $(docker images | grep "^<none>" | awk '{print $3}')