dotfiles/dot_local/bin/executable_docker-child

4 lines
104 B
Plaintext
Raw Normal View History

2021-04-10 08:45:07 +02:00
#!/bin/bash
2021-08-06 15:47:04 +02:00
for i in $(docker images -q); do docker history $i | grep -q $1 && echo $i; done | sort -u