mirror of https://github.com/docker/docs.git
emphasize the hosted discovery service is not meant for production
Signed-off-by: Victor Vieux <victorvieux@gmail.com>
This commit is contained in:
parent
8111304a52
commit
765431f70f
|
@ -24,6 +24,11 @@ can use.
|
|||
|
||||
### Hosted Discovery with Docker Hub
|
||||
|
||||
#####The Hosted Discovery Service is not recomended for production use.
|
||||
#####It's intended to be used for testing/development.
|
||||
|
||||
#####See other backends for produtions use cases.
|
||||
|
||||
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:
|
||||
|
|
|
@ -51,7 +51,8 @@ The easiest way to get started with Swarm is to use the
|
|||
Each Swarm node will run a Swarm node agent. The agent registers the referenced
|
||||
Docker daemon, monitors it, and updates the discovery backend with the node's status.
|
||||
|
||||
This example uses the Docker Hub based `token` discovery service. Log into **each node** and do the following.
|
||||
This example uses the Docker Hub based `token` discovery service (only for testing/dev, not for production).
|
||||
Log into **each node** and do the following.
|
||||
|
||||
1. Start the Docker daemon with the `-H` flag. This ensures that the
|
||||
Docker remote API on *Swarm Agents* is available over TCP for the
|
||||
|
|
|
@ -32,10 +32,10 @@ containers. Docker Machine manages all this provisioning for your swarm.
|
|||
|
||||
Before you create a swarm with `docker-machine`, you associate each
|
||||
node with a discovery service. This example uses the token discovery
|
||||
service hosted by Docker Hub. This discovery service associates a
|
||||
token with instances of the Docker Daemon running on each node. Other
|
||||
discovery service backends such as `etcd`, `consul`, and `zookeeper`
|
||||
are [available](discovery.md).
|
||||
service hosted by Docker Hub (only for testing/dev, not for production).
|
||||
This discovery service associates a token with instances of the Docker
|
||||
Daemon running on each node. Other discovery service backends such as
|
||||
`etcd`, `consul`, and `zookeeper` are [available](discovery.md).
|
||||
|
||||
1. List the machines on your system.
|
||||
|
||||
|
|
Loading…
Reference in New Issue