mirror of https://github.com/docker/docs.git
Merge pull request #1178 from MHBauer/hosted-network-connectivity
Add reliance on external internet connectivity
This commit is contained in:
commit
c3d890a727
|
@ -10,8 +10,19 @@ Docker Swarm comes with multiple Discovery backends.
|
||||||
|
|
||||||
## Backends
|
## Backends
|
||||||
|
|
||||||
|
You use a hosted discovery service with Docker Swarm. The service
|
||||||
|
maintains a list of IPs in your swam. There are several available
|
||||||
|
services, such as `etcd`, `consul` and `zookeeper` depending on what
|
||||||
|
is best suited for your environment. You can even use a static
|
||||||
|
file. Docker Hub also provides a hosted discovery service which you
|
||||||
|
can use.
|
||||||
|
|
||||||
### Hosted Discovery with Docker Hub
|
### Hosted Discovery with Docker Hub
|
||||||
|
|
||||||
|
This example uses the hosted discovery service on Docker Hub. Using
|
||||||
|
Docker Hub's hosted discovery service requires that each node in the
|
||||||
|
swarm is connected to the internet. To create your swarm:
|
||||||
|
|
||||||
First we create a cluster.
|
First we create a cluster.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
|
|
@ -15,8 +15,19 @@ Docker Swarm comes with multiple Discovery backends.
|
||||||
|
|
||||||
## Backends
|
## Backends
|
||||||
|
|
||||||
|
You use a hosted discovery service with Docker Swarm. The service
|
||||||
|
maintains a list of IPs in your swam. There are several available
|
||||||
|
services, such as `etcd`, `consul` and `zookeeper` depending on what
|
||||||
|
is best suited for your environment. You can even use a static
|
||||||
|
file. Docker Hub also provides a hosted discovery service which you
|
||||||
|
can use.
|
||||||
|
|
||||||
### Hosted Discovery with Docker Hub
|
### Hosted Discovery with Docker Hub
|
||||||
|
|
||||||
|
This example uses the hosted discovery service on Docker Hub. Using
|
||||||
|
Docker Hub's hosted discovery service requires that each node in the
|
||||||
|
swarm is connected to the internet. To create your swarm:
|
||||||
|
|
||||||
First we create a cluster.
|
First we create a cluster.
|
||||||
|
|
||||||
# create a cluster
|
# create a cluster
|
||||||
|
|
Loading…
Reference in New Issue