Skip to content

Instantly share code, notes, and snippets.

@TheCjw
Forked from ColinLeverger/update-images.sh
Created February 6, 2018 13:17
Show Gist options
  • Save TheCjw/82c6d9eb9c461cc13001d01470546856 to your computer and use it in GitHub Desktop.
Save TheCjw/82c6d9eb9c461cc13001d01470546856 to your computer and use it in GitHub Desktop.
Update all Docker images
docker images | grep -v REPOSITORY | awk '{printf("%s:%s\n", $1, $2)}' | xargs -L1 docker pull
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment