Correct command to copy binary (#3367)

* Correct command to copy binary

Correct path to copy binary-daemon.
Remove command to copy binary-client (it's not available).

* Use the make install target

Signed-off-by: Misty Stanley-Jones <misty@docker.com>
This commit is contained in:
Cong 2017-06-24 10:14:51 +09:00 committed by John Mulhausen
parent bfda12f536
commit 03e5fae715
1 changed files with 5 additions and 5 deletions

View File

@ -161,11 +161,11 @@ can take over 15 minutes to complete.
Copying nested executables into bundles/1.12.0-dev/binary Copying nested executables into bundles/1.12.0-dev/binary
``` ```
7. Copy the binary to the container's **/usr/bin/** directory. 7. Run `make install`, which copies the binary to the container's
`/usr/local/bin/` directory.
```none ```none
root@a8b2885ab900:/go/src/github.com/moby/moby# cp bundles/1.12.0-dev/binary-client/docker* /usr/bin/ root@a8b2885ab900:/go/src/github.com/moby/moby# make install
root@a8b2885ab900:/go/src/github.com/moby/moby# cp bundles/1.12.0-dev/binary-daemon/docker* /usr/bin/
``` ```
8. Start the Engine daemon running in the background. 8. Start the Engine daemon running in the background.