Start container with multiple network interfaces
With Docker 1.12+ it’s possible to add more than one network interface to a docker container with about five lines of shell commands. First: you must create the Docker networks network1 and network2 via docker network create shell command: docker network create –driver=bridge network1 –subnet=172.19.0.0/24 docker network create –driver=bridge network2 –subnet=172.19.1.0/24 notes: in this example … Read more