Reputation: 83
I installed a docker-ce (version 18.06) in my Ubuntu 16.04 from binary which introduced in this page1.
Now I want to remove it and reinstall docker-ce by apt. But I don't know how to remove it... I just know remove the things which I copy to /usr/bin.. Any other thing should I do?
Thanks!
Upvotes: 0
Views: 2577
Reputation: 919
sudo systemctl stop docker
/usr/bin
then sudo rm /usr/bin/docker*
Upvotes: 2