How to delete interface docker0

docker

Solution

To delete the interface, use:

ip link delete docker0

You may require `sudo` privilege.

Problem

I would like to remove the interface docker0. It would be better to avoid creating the interface docker0 when starting the service and using directly the eth0.

Original source

Related problems