Linux Mint showing a lot of interfaces after test Docker

4

I installed and tested Docker in my linux mint computer, after that it creates a lot of network interfaces that I can't remove now, someone knows a way to remove this interfaces?

Print of the network manager

Victor Hartur de Carvalho

Posted 2017-03-22T12:31:36.893

Reputation: 43

Answers

4

To com­pletely unin­stall docker, run the fol­low­ing com­mands.

sudo apt-get purge docker-engine
sudo apt-get autoremove --purge docker-engine
rm -rf /var/lib/docker # This deletes all images, containers, and volumes

source

harrymc

Posted 2017-03-22T12:31:36.893

Reputation: 306 093