Skip to content

Instantly share code, notes, and snippets.

@anis-campos
Forked from ColinLeverger/update-images.sh
Last active June 4, 2017 11:00
Show Gist options
  • Save anis-campos/0560f8bb2559cbdfa4b0340b0586e8c5 to your computer and use it in GitHub Desktop.
Save anis-campos/0560f8bb2559cbdfa4b0340b0586e8c5 to your computer and use it in GitHub Desktop.
Update all Docker images
for image in `docker images | grep -v "REPOSITORY\|none" | awk '{print $1}'` ; do docker pull $image; done;
@anis-campos
Copy link
Author

Updates for DSM on synology systems with ash where xargs -L1 doesn't works.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment