Implement 'bocker pull' for Docker Hub integration

This commit is contained in:
Peter Wilmott
2015-07-27 19:04:14 +01:00
parent d5b38393c2
commit b240a47ac8
5 changed files with 66 additions and 39 deletions

View File

@@ -1,7 +1,7 @@
#!/usr/bin/env bash
set -o errexit -o nounset -o pipefail
for img in $(./bocker images | grep 'img'); do
for img in $(./bocker images | grep 'img' | awk '{print $1}'); do
./bocker rm "$img"
done