Skip to content

Instantly share code, notes, and snippets.

@tdomzal
Last active July 18, 2016 12:32
Show Gist options
  • Save tdomzal/0c9aedcd3d263114a9acc4e49470d1fe to your computer and use it in GitHub Desktop.
Save tdomzal/0c9aedcd3d263114a9acc4e49470d1fe to your computer and use it in GitHub Desktop.
Docker snippets
#!/bin/bash
# remove dangling images
docker images --quiet --filter=dangling=true | xargs --no-run-if-empty docker rmi
# list container ids created from specified image
docker ps -a -f "ancestor=nginx:latest" --format "{{.ID}}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment