From 3b829284b5585ed4b4a3cd50cee7cf659c582ce4 Mon Sep 17 00:00:00 2001 From: Nicolas Mahe Date: Wed, 5 Dec 2018 09:26:19 +0700 Subject: [PATCH] Add swarm init instruction to the install doc #2 --- docs/cli/mesg-core_service_init.md | 2 +- docs/guide/start-here/installation.md | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/cli/mesg-core_service_init.md b/docs/cli/mesg-core_service_init.md index 63d96f3b6..ef5568595 100644 --- a/docs/cli/mesg-core_service_init.md +++ b/docs/cli/mesg-core_service_init.md @@ -16,7 +16,7 @@ mesg-core service init [flags] ``` mesg-core service init -mesg-core service init --name NAME --description DESCRIPTION +mesg-core service init --name NAME mesg-core service init --current ``` diff --git a/docs/guide/start-here/installation.md b/docs/guide/start-here/installation.md index 00d41ccdf..3f8627433 100644 --- a/docs/guide/start-here/installation.md +++ b/docs/guide/start-here/installation.md @@ -11,6 +11,8 @@ bash <(curl -fsSL https://mesg.com/install) ## Manual installation * Download and install [Docker CE](https://www.docker.com/community-edition) +* Initialize Docker Swarm by running: `docker swarm init` + * If the error `Could not choose an IP address to advertise since this system has multiple addresses on interface eth0 (xxx.xxx.xxx.xxx and yyy.yyy.yyy.yyy)` is returned, run: `docker swarm init --advertise-addr xxx.xxx.xxx.xxx` * Download the binary from our [release page on GitHub](https://github.com/mesg-foundation/core/releases) * Rename the binary to `mesg-core` * Give it the execution permission: `chmod +x mesg-core`