Questions tagged [macvlan]
62 questions
0
votes
1 answer
Docker macvlan: accessing a conatiner on hostA from hostB
https://docs.docker.com/network/network-tutorial-macvlan/#prerequisites
docker network create -d macvlan \
--subnet=172.16.86.0/24 \
--gateway=172.16.86.1 \
-o parent=eth0 \
my-macvlan-net
"Create a macvlan network called my-macvlan-net.…

ealeon
- 12,074
- 24
- 92
- 173
0
votes
1 answer
Bind address in Docker macvlan
I am trying to building a macvlan with N containers binded to the same ip. Each container will expose one service.
To do that:
sudo docker network create -d macvlan \
--subnet=192.168.4.0/24 \
--ip-range=192.168.4.0/24 \
…

jcardosovtl
- 65
- 4