Make Docker Containers Talk To Each Other

This is my target scenario.
Make docker containers talk to each other. Take a note that all containers within the same bridge network can communicate with each other via ip addresses. Basically the cluster sh script launches three identical containers and uses pipework to configure a bridge bridge1 on the host and add an nic eth1 to each container. Your container can link each other so you can access them directly by a name don t care too much about the ip. This is what replace the deprecated link option.
You looked for help in the official docker docs and even with those instructions you can t get two containers to talk to each other. Each container for a service joins the default network and is both reachable by other containers on that network and discoverable by them at a hostname identical to the container name. Add containers to the mix and it becomes a real headache. On local host use docker compose to startup your containers and use link.
Each container encapsulates its contents so use ports for communication instead of trying to just openly expose the full filesystem of one container to another. Networking is a complicated topic. I cannot make a sails container and a postgress container to communicate. In this video we cover how to get two or more containers to talk to each other through the magic of docker compose.
Even by specifically exposing the port of the postgres container it still doesn. Do not use a local port but the name of the link. I plan to split my monolthic server up into many small docker containers but haven t found a good solution for inter container communication yet. However they cannot resolve container names so communication via container names is not possible.
If both applications need access to the same filesystem consider running both in the same container. You could read several books and spend days trying to understand the fundamentals of networking. As mentioned earlier docker containers are attached to bridge or docker0 network by default if no other network is mentioned. If i log into one of the containers i can arping other containers.
Create your first dockerfile create and build.