From 6c2f4c20c9770de4e4b0e93f3f934ecf5f35bbb8 Mon Sep 17 00:00:00 2001 From: Morgan Bauer Date: Wed, 26 Aug 2015 15:58:37 -0700 Subject: [PATCH] update docker daemon initialization to use subcommand vs -d flag - includes note regarding deprecation of -d flag Signed-off-by: Morgan Bauer --- docs/install-manual.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/install-manual.md b/docs/install-manual.md index 307b448d90..966bcae7c2 100644 --- a/docs/install-manual.md +++ b/docs/install-manual.md @@ -55,8 +55,9 @@ This example uses the Docker Hub based `token` discovery service. Log into **eac 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 *Swarm Manager*. - $ docker -H tcp://0.0.0.0:2375 -d - + $ docker daemon -H tcp://0.0.0.0:2375 + + > **Note**: versions of docker prior to 1.8 used the `-d` flag instead of the `docker daemon` subcommand. 2. Register the Swarm agents to the discovery service. The node's IP must be accessible from the Swarm Manager. Use the following command and replace with the proper `node_ip` and `cluster_id` to start an agent: