mirror of
https://github.com/yeasy/docker_practice.git
synced 2024-11-01 12:13:38 +00:00
14 lines
328 B
Bash
14 lines
328 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# This script will update all local images
|
||
|
# See: https://github.com/yeasy/docker_practice/blob/master/_local/pull_all.sh
|
||
|
# Usage: pull_all
|
||
|
# Author: yeasy@github
|
||
|
# Create: 2014-09-23
|
||
|
|
||
|
for image in `sudo docker images|grep -v "REPOSITORY"|grep -v "<none>"|awk '{print $1":"$2}'`
|
||
|
do
|
||
|
sudo docker pull $image
|
||
|
done
|
||
|
|