Uninstall Docker when installed via curl

26,359

For older versions of docker installed via curl

sudo curl -sSL https://get.docker.com/ | sh

You can remove docker with

sudo apt-get remove --auto-remove docker #Removes docker and dependencies
sudo rm -rf /var/lib/docker #Removes all data 

Edit: 05/2018: For newer versions according to online documentation

$ sudo apt-get purge docker-ce

To remove images, containers, volumes, or customized configuration files on your host that are not automatically removed

$ sudo rm -rf /var/lib/docker 
Share:
26,359

Related videos on Youtube

Author by

Purplefish32

Updated on September 18, 2022

Comments

  • Purplefish32 3 months

    I have installed docker un my debian 7 server using the following command :

    sudo curl -sSL https://get.docker.com/ | sh
    

    I would now like to remove docker, how on earth do I uninstall it ?

  • pmarkoulidakis
    pmarkoulidakis over 7 years
    It doesnt make it clear if the method works with the curl method. I end up reading the script :P
  • Daniel
    Daniel about 5 years
    This didn't work for me. The documentation now says run sudo apt-get remove docker docker-engine docker-ce docker.io
  • pmarkoulidakis
    pmarkoulidakis over 4 years
    Ive updated the answer to cover newer versions of docker.
  • RalfFriedl
    RalfFriedl over 3 years
    Docket was not installed with apt.
  • womble
    womble over 3 years
    On the contrary, the get.docker.com script does, indeed, use apt to install the docker packages.