From 958dd898918afa75901efd7feb7d416284a2854b Mon Sep 17 00:00:00 2001 From: Justin Cormack Date: Fri, 7 Apr 2017 15:03:39 +0100 Subject: [PATCH] Simplify the instructions if you already have Go installed Most use cases can just do `go get`. Signed-off-by: Justin Cormack --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index bc7552413..e38cb0659 100644 --- a/README.md +++ b/README.md @@ -19,9 +19,10 @@ Moby, a toolkit for building custom minimal, immutable Linux distributions. Simple build instructions: use `make` to build. This will build the Moby customisation tool. -If you already have a Go build environment and installed the source in your `GOPATH` -you can do `go install github.com/docker/moby/src/cmd/moby` to install the `moby` tool -instead +If you already have `go` installed you can use `go get -u github.com/docker/moby/src/cmd/moby` to install +the `moby` tool, and then use `moby build moby.yml` to build the example configuration. You +can use `go get -u github.com/docker/moby/src/cmd/infrakit-instance-hyperkit` to get the +hyperkit infrakit tool. Once you have built the tool, use `bin/moby build moby.yml` to build the example configuration, and `bin/moby run moby` to run locally. Use `halt` to terminate on the console.