I was learning about the #docker network bridge; it is the default created when you create containers. 🙂💃🏾
This summarizes how two containers connect through the "bridge" network.
Nginx and Busybox container, doing a "wget" from the Busybox container.
Docker 🐳comprises two parts: a client and a server(#docker daemon). From the client, you can run Docker commands like:
docker pull; docker build, docker run, or docker push.
🧵 See more...🥳
The Docker daemon will constantly listen to client requests and perform these container operations. The Docker daemon also manages Docker objects such as images, containers, networks, and storage.
Docker client and daemon can run on the same system, or we can connect a Docker client to a remote Docker daemon. 🐳