Docker

Install

Ubuntu 18.04

Commands

Stop all containers

docker stop $(docker ps -a -q)

Remove all containers

docker rm $(docker ps -a -q)

Remove all images

docker rmi $(docker images -q)

Remove all unused containers, networks, images (both dangling and unreferenced), and volumes.

docker system prune -a -f --volumes

Throubleshooting

Last updated

Was this helpful?