Uninstall CMA
On Linux, follow the following instructions for your distro:
Ubuntu
Arch Linux
CentOS
Fedora
1. Uninstall the Docker Engine, CLI, and ContainerD packages:
sudo apt-get purge docker-ce docker-ce-cli containerd.io
2. Images, containers, volumes, or customized configuration files on your host are not automatically removed. To delete all images, containers, and volumes:
sudo rm -rf /var/lib/docker
sudo rm -rf /var/lib/containerd
To uninstall the Docker package:
sudo pacman -R docker
To uninstall the Docker package and dependencies that are no longer needed:
sudo pacman -Rns docker
The above commands will not remove images, containers, volumes, or user-created configuration files on your host. If you wish to delete all images, containers, and volumes run the following command:
rm -rf /var/lib/docker
1. Uninstall the Docker Engine, CLI, and ContainerD packages:
sudo yum remove docker-ce docker-ce-cli containerd.io
2. Images, containers, volumes, or customized configuration files on your host are not automatically removed. To delete all images, containers, and volumes:
sudo rm -rf /var/lib/docker
sudo rm -rf /var/lib/containerd
1. Uninstall the Docker Engine, CLI, and ContainerD packages:
sudo dnf remove docker-ce docker-ce-cli containerd.io
2. Images, containers, volumes, or customized configuration files on your host are not automatically removed. To delete all images, containers, and volumes:
sudo rm -rf /var/lib/docker
sudo rm -rf /var/lib/containerd
Last modified 11mo ago