I suggest creating a custom docker bridge network on which you put all your other docker containers that you want to give access to the local network. There are other reasons a custom bridge is preferred, but that's a different subject.
Here is the terminal command that will create a custom docker bridge network named reverse_proxy:
Note the two networks: sections, one outside of and one inside the nxpm service stanza.
Once this container is up and running, you should be able to route to any network service on the local area network connected to your docker host by creating a host redirect in the nxpm webui that points to that services lan.ip:port.
I suggest creating a custom docker bridge network on which you put all your other docker containers that you want to give access to the local network. There are other reasons a custom bridge is preferred, but that's a different subject.
Here is the terminal command that will create a custom docker bridge network named
reverse_proxy
:Here's the NXPM
docker-compose.yml
I'm using that works for this purpose:Note the two
networks:
sections, one outside of and one inside the nxpm service stanza.Once this container is up and running, you should be able to route to any network service on the local area network connected to your docker host by creating a host redirect in the nxpm webui that points to that services
lan.ip:port
.