Docker can’t be started: Error initializing network controller: list bridge addresses failed

Solution:

Create docker network interface manually using the following commands:

ip link add name docker0 type bridge

ip addr add dev docker0 172.x.y.z/16

Comments are closed.