Skip to content

Instantly share code, notes, and snippets.

@inblank
Last active July 29, 2016 08:16
Show Gist options
  • Save inblank/c68eeb34f6f34d4902b75cf709bc2ff5 to your computer and use it in GitHub Desktop.
Save inblank/c68eeb34f6f34d4902b75cf709bc2ff5 to your computer and use it in GitHub Desktop.
Pull latest version of all docker images
#!/bin/bash
docker images | awk '{print $1}' | xargs -L1 docker pull
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment