##Use network interfaces to allow docker to speak to it's API via containers
###Daemon and host side config
- Add a new network hardware called api0
ip link add api0 type bridge
- Bring it up using
ip link set api0 up
- Give it an IP Address
ip addr add 192.168.0.1/16 dev api0
- Restart docker daemon on that IP address
docker -d -H 192.168.0.1:4243 -d
###Docker side config