Skip to content

Instantly share code, notes, and snippets.

@hermzz
Last active November 28, 2016 10:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hermzz/46f942d4c1c54c2059fe8d48e2321446 to your computer and use it in GitHub Desktop.
Save hermzz/46f942d4c1c54c2059fe8d48e2321446 to your computer and use it in GitHub Desktop.
Docker tips

Docker compose

Run bash on an image

docker-compose run --rm ${image_name} bash

Straight up docker

Clean unused volumes

docker volume ls -qf dangling=true | xargs -r docker volume rm

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