I have a docker container hosted on a linux box.I need to access it from any computer on my local network.
From the answer obtained from this question , https://stackoverflow.com/questions/42083546/docker-macvlan-network-unable-to-access-internet , I was able to give the container an ip address that is on 10.30.21.* subnet.
My linux box and other computers on my network are on 10.30.20.* subnet .At the moment , I can ping my linux box (host) , 8.8.8.8 and any other computer from the docker container.
I can also ping the container and any other computer on my network from the host.
How do I ping the container from any other computer on the network? I am new to docker.Thank you.