Skip to content

Instantly share code, notes, and snippets.

@anis-campos
Created June 4, 2017 10:53
Show Gist options
  • Save anis-campos/345d792ca62420298f46692b740fb6ca to your computer and use it in GitHub Desktop.
Save anis-campos/345d792ca62420298f46692b740fb6ca to your computer and use it in GitHub Desktop.
Update all docker images on DSM
for v in `docker images | tail -n +2 |grep -v -e "none\|syncer"|awk '{print $1}'` ; do docker pull $v; done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment