Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
This question was answered by @evertramos:
@hansen I think some code of how you are trying to do this set up would help us understand better.
I would suggest using Docker Compose with Swarn mode, but about networks… I would suggest you have a very strict way on naming containers and instead using
ip:portto connect to your containers, you usesever_name:portto connect to it and let the Docker do the network trick for you.Here is how you could use Docker Network:
1. Create a Docker Network
docker network create your_network_01As of Docker Network documentation
2. Use this network in your
docker-compose.ymlfile:networks: default: external: name: your-network-name3. Connect any Container to your network
docker network connect your_network_01 your_conteiner_nameAs of Docker Network documentation
Hope it helps!