Skip to content

Instantly share code, notes, and snippets.

@bchewy
Last active June 7, 2022 13:48
Show Gist options
  • Save bchewy/5fba5b63cccdc7aac95556239377a16b to your computer and use it in GitHub Desktop.
Save bchewy/5fba5b63cccdc7aac95556239377a16b to your computer and use it in GitHub Desktop.
handy docker cmds

Handy Docker Commands!

  • docker ps -a # shows all containers and their statuses, stopped, up for x hours, etc!
  • docker stop $(docker ps -a -q) # Stops all running containers.
  • docker build . # Builds current dockerfile in directory into a docker image
  • docker-compose up -d --build # builds from docker-compose.yml, and runs as daemon.

Tagging docker images & pushing

  • docker images
  • docker tag <imageid> bchewy/repo_name:tagname
  • docker push bchewy/repo_name

Removing all containers & images if you need to:

docker system prune -a

Reference: https://www.digitalocean.com/community/tutorials/how-to-remove-docker-images-containers-and-volumes#removing-docker-images https://www.digitalocean.com/community/tutorials/how-to-remove-docker-images-containers-and-volumes#:~:text=Remove%20all%20images,docker%20images%20%2Da

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