From 421c5a2ee58f89049afcd973b41d8db36c9f7b80 Mon Sep 17 00:00:00 2001 From: Victor Vieux Date: Wed, 18 Mar 2015 17:01:40 -0700 Subject: [PATCH] add https to token doc Signed-off-by: Victor Vieux --- discovery/token/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/discovery/token/README.md b/discovery/token/README.md index e322c5a1be..5244994852 100644 --- a/discovery/token/README.md +++ b/discovery/token/README.md @@ -2,30 +2,30 @@ Docker Swarm comes with a simple discovery service built into the [Docker Hub](http://hub.docker.com) -The discovery service is still in alpha stage and currently hosted at `http://discovery-stage.hub.docker.com` +The discovery service is still in alpha stage and currently hosted at `https://discovery-stage.hub.docker.com` #####Create a new cluster -`-> POST http://discovery.hub.docker.com/v1/clusters (data="")` +`-> POST https://discovery.hub.docker.com/v1/clusters (data="")` `<- ` #####Add new nodes to a cluster -`-> POST http://discovery.hub.docker.com/v1/clusters/ (data="")` +`-> POST https://discovery.hub.docker.com/v1/clusters/ (data="")` `<- OK` -`-> POST http://discovery.hub.docker.com/v1/clusters/token (data="")` +`-> POST https://discovery.hub.docker.com/v1/clusters/token (data="")` `<- OK` #####List nodes in a cluster -`-> GET http://discovery.hub.docker.com/v1/clusters/token` +`-> GET https://discovery.hub.docker.com/v1/clusters/token` `<- ["", ""]` #####Delete a cluster (all the nodes in a cluster) -`-> DELETE http://discovery.hub.docker.com/v1/clusters/token` +`-> DELETE https://discovery.hub.docker.com/v1/clusters/token` `<- OK`