0 votes
in Docker by
What are the default networks in Docker?

1 Answer

0 votes
by

Bridge network, host, and none are the default networks in Docker. If no network is defined, the bridge network is the default one to which all the containers link. The server network aids in connecting to the host's network stack. Without a network interface, the none network ensures access to a network stack that is specific to a container.

...