Docker with 2 network cards

I have two network cards installed on my server.
Network card 1: Gateway 192.168.6.3
Network card 2: Gateway 192.168.10.1

All containers running over the bridge (host 192.168.6.30) work together. I now have Zoraxy Proxy Manager running as a container under 192.168.6.30, and everything is working perfectly. However, I would now like to get the proxy into the 192.168.10.1 network. The Vaultwarden container should also switch from 192.168.6.30 to 192.168.10.1. The reason is that the 192.168.10.1 network is to be moved to a DMZ.

Is there a step-by-step guide (for dummies) on how to do this and unravel everything?

How do you

?

Usually you just publish container ports, you can set the IP if needed:

    ports:
      - 192.168.10.10:80:80
      - 192.168.10.10:443:443

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.