标签:tps sign 桥接 dock mac rom drive res running
记性不好忘记了,回顾一下。按照惯例,直接看官文。
Docker’s networking subsystem is pluggable, using drivers. Several drivers exist by default, and provide core networking functionality.
bridge: The default network driver. If you don’t specify a driver, this is the type of network you are creating. Bridge networks are usually used when your applications run in standalone containers that need to communicate. User-defined bridge networks are best when you need multiple containers to communicate on the same Docker host.
host: For standalone containers, remove network isolation between the container and the Docker host, and use the host’s networking directly. host is only available for swarm services on Docker 17.06 and higher. Host networks are best when the network stack should not be isolated from the Docker host, but you want other aspects of the container to be isolated.
overlay: Overlay networks connect multiple Docker daemons together and enable swarm services to communicate with each other. Overlay networks are best when you need containers running on different Docker hosts to communicate, or when multiple applications work together using swarm services.
macvlan: Macvlan networks allow you to assign a MAC address to a container, making it appear as a physical device on your network. The Docker daemon routes traffic to containers by their MAC addresses.
none: For this container, disable all networking. none is not available for swarm services.
docker的网络子系统是插件化的,需要使用驱动。默认支持以下几种驱动:
参考:
https://docs.docker.com/network/
标签:tps sign 桥接 dock mac rom drive res running
原文地址:https://www.cnblogs.com/keithtt/p/10229981.html