Skip to content

Instantly share code, notes, and snippets.

@mkurian
Created May 8, 2019 23:20
Show Gist options
  • Save mkurian/1abdf89c7a98e58bbf956c994baa49be to your computer and use it in GitHub Desktop.
Save mkurian/1abdf89c7a98e58bbf956c994baa49be to your computer and use it in GitHub Desktop.
Docker commands

Logs for container startup

docker logs CONTAINER

List all containers even dead ones

docker ps -a

Remove all images with a pattern to clean up disk space

docker images -a | grep "pattern" | awk '{print $3}' | xargs docker rmi -f

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