Uninstall CMA

1. Uninstall Docker

On Mac, follow these instructionsarrow-up-right to remove Docker from your system.

On Windows, follow these instructionsarrow-up-right to remove Docker from your system.

On Linux, follow the following instructions for your distro:

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 herearrow-up-right.

Last updated