From 97c534cae880be9b0fceb190f0e38fc648ae23af Mon Sep 17 00:00:00 2001 From: Kirill Kolyshkin Date: Wed, 11 May 2016 14:10:09 -0700 Subject: [PATCH] install-manual: fix sec. swarm manager connect Apparently, without -p 4000:4000 the secondary swarm manager would be inaccessible, basically rendering it useless. Signed-off-by: Kir Kolyshkin --- docs/install-manual.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/install-manual.md b/docs/install-manual.md index 7d1a79248c..b9814a9995 100644 --- a/docs/install-manual.md +++ b/docs/install-manual.md @@ -221,7 +221,7 @@ After creating the discovery backend, you can create the Swarm managers. In this Replacing `` with the IP address from the previous command, for example: - $ docker run -d swarm manage -H :4000 --replication --advertise :4000 consul://172.30.0.161:8500 + $ docker run -d -p 4000:4000 swarm manage -H :4000 --replication --advertise :4000 consul://172.30.0.161:8500 5. Enter `docker ps`to verify that a Swarm container is running.