Closed Flamingi closed 3 years ago
- If I connect the container to the bridge network created by OpenWrt I can access my LAN, but on next boot OpenWrt cannot start as the other container takes the network first and then it is already in use.
I Had the same issue, I ended up running my docker-compose YAML file after "ready" instead of on boot.
I have installed OpenWrt in Docker on Ubuntu, it's working fine and as expected. I have used the default configuration with one macvlan interface for WAN and a bridge for LAN. My Ubuntu host can be reached with
192.168.1.1
, while OpenWrt has the IP192.168.1.2
. Now I want to run other containers using the standard bridge interface (i.e.docker0
) and I have observed the following behavior:192.168.1.1:8123
)192.168.1.1:8883
)ping 8.8.8.8
orping google.com
work)ping 192.168.1.233
does not work)Is this expected behavior? How do I fix it?