Link to home
Start Free TrialLog in
Avatar of NAMEWITHELD12
NAMEWITHELD12Flag for United States of America

asked on

Docker networking question

how do I create a custom docker bridge ?

I want to set up a custom docker bridge and let it use a predetrmined set of IP space , how ?

thanks!
ASKER CERTIFIED SOLUTION
Avatar of Nicolas Lecanu
Nicolas Lecanu
Flag of Guadeloupe image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of NAMEWITHELD12

ASKER

Perfect , this is EXACTLY what I am looking for  

THANKS !!!!!!!!!!!

stop docker
ip link add br0 type bridge
ip addr add 172.30.1.1/20 dev br0
ip link set br0 up
docker -d -b br0
No problem I'm happy to be helpfull :-)