Skip to content
This repository has been archived by the owner on Feb 1, 2021. It is now read-only.

Commit

Permalink
docs additions
Browse files Browse the repository at this point in the history
 - add the unix socket, the default of the docker client
 - partially resolves #804

Signed-off-by: Morgan Bauer <[email protected]>
  • Loading branch information
MHBauer committed Oct 12, 2015
1 parent 1d008a7 commit e4edd0b
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions docs/install-manual.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,12 @@ Docker daemon, monitors it, and updates the discovery backend with the node's st

This example uses the Docker Hub based `token` discovery service. 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 *Swarm Manager*.
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*, as well as the standard unix socket which is
available in default docker installs.

$ docker daemon -H tcp://0.0.0.0:2375
$ docker daemon -H tcp://0.0.0.0:2375 -H unix:///var/run/docker.sock

> **Note**: versions of docker prior to 1.8 used the `-d` flag instead of the `docker daemon` subcommand.

Expand Down

0 comments on commit e4edd0b

Please sign in to comment.