Links

Uninstall CMA

1. Uninstall Docker

On Mac, follow these instructions to remove Docker from your system.
On Windows, follow these instructions to remove Docker from your system.
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
Documentation is available here.
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
Documentation is available here.
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
Documentation is available here.
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
Documentation is available here.