Skip to content

Instantly share code, notes, and snippets.

@klappradla
Last active August 21, 2016 11:00
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 klappradla/db570818e7efb11003ce475544173306 to your computer and use it in GitHub Desktop.
Save klappradla/db570818e7efb11003ce475544173306 to your computer and use it in GitHub Desktop.
Stop and remove all Docker containers (running or not), interactive console in container
# Stop and remove all docker containers
docker stop $(docker ps -a -q)
docker rm $(docker ps -a -q)
# Run an interative console (like byebug or pry)
docker-compose run --service-ports appname
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment