Skip to content

Instantly share code, notes, and snippets.

@dubcl
Created April 13, 2020 20:19
Show Gist options
  • Save dubcl/e3b9447b37bfba433a37dd2dfbc14f00 to your computer and use it in GitHub Desktop.
Save dubcl/e3b9447b37bfba433a37dd2dfbc14f00 to your computer and use it in GitHub Desktop.
fix docker service on archlinux

the problem

dockerd[53380]: failed to start daemon: Error initializing network controller

the fix

ip link add name docker0 type bridge
ip add add dev docker0 172.17.0.1/16 
systemctl start docker
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment