Dọn dẹp Docker

Xóa file ảnh và container của Docker

 docker rmi <IMAGE ID>

Xem file ảnh hiện có trong hệ thống

docker images

REPOSITORY     TAG        IMAGE ID            CREATED          VIRTUAL SIZE
centos         latest     2933d50b9f77        11 days ago      196.6 MB
ubuntu         latest     36248ae4a9ac        11 days ago      188 MB

Dọn dẹp dữ liệu và tiến trình không sử dụng của docker

docker system prune

WARNING! This will remove:
        - all stopped containers
        - all networks not used by at least one container
        - all dangling images
        - all build cache

https://tecadmin.net/remove-docker-images-and-containers/

https://forums.docker.com/t/command-to-remove-all-unused-images/20