I'm running Docker containers on a host (A) which is in a local network and gets its IP address from the WLAN router via DHCP. I'd like to access the docker containers via IP address from another host (B) which is in the same local network. I've configured a macvlan
docker network in my docker compose file. However if I scan the network for IP addresses with e.g. nmap -sP XXX.XXX.XXX.0/24
with XXX.XXX.XXX
as subnet mask I don't find new IP addresses. In general: Do I have to consider something special in case I create a setup like this?
Reference to a similar, simplifying question on forums.docker.com.