I'm developing microservices based on node JS/Express with multiple containers. Different group of containers deployed with different docker compose. Eg. One docker compose contains 4 docker containers, while other docker compose contains 3 docker containers. Docker compose created automatic network for each docker compose, eg. BackendA_default and BackendB_default, thus each backend cannot talk to each other as they're on separate network. Even if I specify the network to eg. backend, it will still show BackendA_backend instead of just 'backend' network. I already tried using 'bridge' and 'host' network, it still doesn't work.
How do I make this 2 groups of docker network connect to each other ?