This is more of a docker question than a selfhosted question, but i think that most of people here should be familiar with docker.
HA runs with network-mode : host
(in order for autodiscovery to work) when my Nginx Proxy Manager is running on a bridge network (and in a different docker-compose.yml file), which makes them not see each other as far as I know. Could I maybe add an additional network to the HA like this:
networks:
default:
driver: host
nginxnetwork:
external: true
Pretty sure that if you’re using host networking you can’t add an additional bridge network. I use macvlan to provide host-like access to the network (the container gets it’s own ip on your actual network) and then use bridges to connect to my reverse proxy (and also the zwave controller)