You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 13, 2019. It is now read-only.
There three types of network that are built into docker
host
bridge
overlay
We need to decide which type of network out of these three will be supported by this project
host
There are services in the project that don't expose port on host but do expose port to other services on the network. You may not expose port without exposing the port on host using host network. Therefore, we can't support this network type.
bridge
We are already supporting bridge network.
overlay
We will added support for overlay network. Overlay support will allow this project to run on docker swarm cluster.