Howto Pull Docker Image in One Line

Currently Docker CLI tool only capable of pulling or refreshing a single image at one time, it’s quite a problematic if were in need to refresh a numbers of image. This problem can be solve by using some others tool in Linux shell.

docker images | awk '{print $1}' | grep -v REPOSITORY | xargs -L1 docker pull