Files

6 lines
115 B
Bash
Raw Permalink Normal View History

2022-01-17 15:29:17 -08:00
#!/bin/bash
# Remove all untagged docker images.
docker rmi $(docker images | grep "^<none>" | awk '{print $3}')