In the previous chapters, you learned about Docker and its associated terminologies, took a deeper look into how to build Docker images using the Dockerfile, and learned about how to persist data generated by containers.
In this chapter, you will look at networking in Docker and learn how containers can talk to each other and discover each other with the help of Docker’s networking features.
Why Do We Need Container Networking?
Traditionally, most compute solutions are thought of as single-purpose solutions—it ...