I've run several containers whose network type is bridge, but I found that I can't access to them from the LAN.
For example, here is a container provides web service
whyour/qinglong:latest "./docker/docker-ent…" 3 months ago Up 40 hours 0.0.0.0:5700->5700/tcp, :::5700->5700/tcp qinglong
and I can access to it in the openwrt device
[root@OpenWrt ~]$ curl 10.0.0.1:5700
<!DOCTYPE html>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="shortcut icon" href="/images/favicon.svg">
<link rel="stylesheet" ...
but when I tried to access to it in a other PC(whose IP is 10.0.0.7), it will fail
So where is the problem(maybe firewall)?