12

I have installed docker as described here raspberrypi.org/blog/docker-comes-to-raspberry-pi with curl -sSL https://get.docker.com | sh. How do I uninstall it?

förschter
  • 223
  • 1
  • 3
  • 6

4 Answers4

23

I had to use sudo apt remove docker-ce. The script at get.docker.com runs "$pkg_manager install -y -q docker-ce$pkg_version" so docker-ce is the package, not docker.

Aurora0001
  • 6,308
  • 3
  • 23
  • 38
David Berkompas
  • 346
  • 2
  • 4
6

To remove the package: sudo apt remove docker-ce*

To remove the docker0 network interface: sudo ip link delete docker0

Ankur A Sharma
  • 161
  • 1
  • 2
6

Uninstall it by using

apt remove docker -y

Hope that helps.

2

Additional: Remove any USB Ethernet entries that you might have put at the bottom of the /etc/dhcpcd.conf

why? I upgraded to buster stable and my RPi3B+ seemed like it was fire-walled. Above fixes ethernet ghosted connections, WIFI was working. I say ghosted because the Plymouth desktop showed a live connected eth0 and Ip address, for example, 192.168.1.100 but couldn't ping anything local to remote and vice versa. If I locally clicked on the WiCD icon the network would come alive. But not on a reboot.

The residue of Docker USB-net connections to the swarm, in the dhcpd, was stopping me using the ethernet.

M. Rostami
  • 4,323
  • 1
  • 17
  • 36
Half-Tone
  • 21
  • 1
  • Also, when doing apt-update, docker.com was still in the sources.list . To remove the entry $ sudo rm /etc/apt/sources.list.d/docker.list – Half-Tone Jan 28 '20 at 21:17