Search code examples
dockerubuntu-14.04uninstallation

How to remove docker completely from ubuntu 14.04


I installed Docker on Ubuntu a while back but when I tried to remove, the Docker still exists in the system. I followed this https://stackoverflow.com/a/31313851/2340159 but didn't work.


Solution

  • Apparently, the system I was using had the docker-ce not Docker. Thus, running below command did the trick.

    sudo apt-get purge docker-ce

    sudo rm -rf /var/lib/docker

    hope it helps