What's interesting is that I already set up one Docker container and I can access it without a problem. So I guess this is just a cosmetic bug in LuCI?
Not sure where to go from there, any help is appreciated.
root@OpenWrt:~# cat /etc/config/network
config interface 'loopback'
option device 'lo'
option proto 'static'
option ipaddr '127.0.0.1'
option netmask '255.0.0.0'
config globals 'globals'
option ula_prefix 'fd05:ae04:de0d::/48'
option packet_steering '1'
config device
option name 'br-lan'
option type 'bridge'
list ports 'eth0'
list ports 'eth2'
config device
option name 'eth0'
option macaddr 'c6:af:f4:6d:60:e8'
config device
option name 'eth2'
option macaddr 'c6:af:f4:6d:60:e8'
config interface 'lan'
option device 'br-lan'
option proto 'static'
option ipaddr '192.168.1.1'
option netmask '255.255.255.0'
config device
option name 'eth1'
option macaddr 'c6:af:f4:6d:60:e7'
config interface 'wan'
option device 'eth1'
option proto 'dhcp'
option peerdns '0'
list dns '1.1.1.1'
list dns '1.0.0.1'
option delegate '0'
config interface 'docker'
option device 'docker0'
option proto 'none'
option auto '1'
config device
option type 'bridge'
option name 'docker0'
Please post images directly into the forum instead of using 3rd party sites. Additionally, where possible, please use text based configs/logs.
Please use the "Preformatted text </>" button for logs, scripts, configs and general console output (red circle; this works best in the 'Markdown' composer view in the blue oval):
@brada4 is right here. Allow the bridge device to be empty.
Which means that currently no interface will be attached to it.
With allow empty, you allow that the bridge is not only there but also in up state.