Docker
  • Dockers
  • Glossary
  • Introduction
  • Architecture
  • How to Install?
  • Commands
  • Push image to Docker Cloud
  • Applications
    • OpenVino SmartCity
      • Operating System
      • Docker
      • Gitlab Repository
      • Services
      • Intel OpenVino Toolkit
    • Hello World
      • DockerFile
      • FilesDependencies
      • Build & Run
    • ImageRecognition
      • Prerequisites
      • DockerFile
      • Build & Run
    • Clean Dockers
  • Orquestation
    • Dockers Swarm
    • Kubernetes
  • Integration
    • AMQP
    • AWS
Powered by GitBook
On this page

Was this helpful?

  1. Applications

Clean Dockers

# Stop all containers
docker stop `docker ps -qa`

# Remove all containers
docker rm `docker ps -qa`

# Remove all images
docker rmi -f `docker images -qa `

# Remove all volumes
docker volume rm $(docker volume ls -qf)

# Remove all networks
docker network rm `docker network ls -q`
PreviousBuild & RunNextOrquestation

Last updated 5 years ago

Was this helpful?