0 votes
in Docker by

In Docker, what is a bridge network?

a) A public network accessible from outside

b) A private network segment created for a specific container

c) A way to connect multiple containers to the internet

d) A network connecting containers to each other on the same host

1 Answer

0 votes
by

d) A network connecting containers to each other on the same host

Explanation:

The default bridge network in Docker allows containers to communicate with each other on the same host machine, but it does not allow for direct external access.

...