I’m using docker-compose UI on omv7.
docker-ce 5:27.0.3-1~debian.12~bookworm
docker-compose-plugin 2.28.1-1~debian.12~bookworm
I installed plex from dockerhub,(https://hub.docker.com/r/linuxserver/plex) and it runs no problem. It is by default configured to run in host mode. I can access the webui etc. without any problems.
Then I tried installing qbittorrent (https://hub.docker.com/r/linuxserver/qbittorrent) and it by default runs on the default docker bridge network. I am completely unable to access the webui. I created a user bridge (only giving it a name and letting docket give it a subnet etc) and again I was unable to access it via webui. When I threw my hands up and put qbittorrent into host mode - viola I can access it.
Here are both the default bridge and user defined bridge inspects…
root@omv:~# docker inspect bridge
[
{
"Name": "bridge",
"Id": "aa3a6b37fe01161180a6be10b7cff7cf4a08aa284422664602b8e36cb1faf60f",
"Created": "2024-07-18T20:49:29.072176834-05:00",
"Scope": "local",
"Driver": "bridge",
"EnableIPv6": false,
"IPAM": {
"Driver": "default",
"Options": null,
"Config": [
{
"Subnet": "172.17.0.0/16",
"Gateway": "172.17.0.1"
}
]
},
"Internal": false,
"Attachable": false,
"Ingress": false,
"ConfigFrom": {
"Network": ""
},
"ConfigOnly": false,
"Containers": {
"40d3bcb43ecfabfa21bf20a71cea28e38e18d8fdea395ad0e083e8dd8b9db6ef": {
"Name": "qbittorrent",
"EndpointID": "53dff696157f96eb57210e80c5a91eb35c12b4e4059156f2fd22bfdbcbdd2c1e",
"MacAddress": "02:42:ac:11:00:02",
"IPv4Address": "172.17.0.2/16",
"IPv6Address": ""
}
},
"Options": {
"com.docker.network.bridge.default_bridge": "true",
"com.docker.network.bridge.enable_icc": "true",
"com.docker.network.bridge.enable_ip_masquerade": "true",
"com.docker.network.bridge.host_binding_ipv4": "0.0.0.0",
"com.docker.network.bridge.name": "docker0",
"com.docker.network.driver.mtu": "1500"
},
"Labels": {}
}
]
root@omv:~# docker inspect my-net
[
{
"Name": "my-net",
"Id": "14f5e64c3df5816a9a817c9f83b95252a5a26cbeba9ce87b2d77f1ef4d802435",
"Created": "2024-07-19T13:37:00.310192499-05:00",
"Scope": "local",
"Driver": "bridge",
"EnableIPv6": false,
"IPAM": {
"Driver": "default",
"Options": {},
"Config": [
{
"Subnet": "172.18.0.0/16",
"Gateway": "172.18.0.1"
}
]
},
"Internal": false,
"Attachable": false,
"Ingress": false,
"ConfigFrom": {
"Network": ""
},
"ConfigOnly": false,
"Containers": {
"e4ad8a5eb94258d73a0a3aea4e015dcc29ad6a3155c82d4f0a7128d6c868463d": {
"Name": "qbittorrent",
"EndpointID": "a617f6acd73159c223ad350bfb86d113b099f9982dcf243a47b6d60b68af3549",
"MacAddress": "02:42:ac:12:00:02",
"IPv4Address": "172.18.0.2/16",
"IPv6Address": ""
}
},
"Options": {},
"Labels": {}
}
]
What is going on where I cannot access webui in bridge mode but can in host mode?
Also from the host machine, I cannot ping or curl the ip assigned to the qbittorrent container in bridge network.
Much thanks inadvance for help figuring this out!