From 1f7f4a29ffca6653343e4775b8a909269c6e692b Mon Sep 17 00:00:00 2001 From: stefanlasiewski Date: Fri, 18 Nov 2016 14:44:33 -0800 Subject: [PATCH] `docker-machine ...` should actually be `docker-machine env ...` in a couple of places. --- docs/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/index.html b/docs/index.html index d48bd6e1..671bbfcd 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1213,11 +1213,11 @@ You should see your 5 nodes. ## Using Docker Machine to communicate with a node -- To select a node, use `eval $(docker-machine nodeX)` +- To select a node, use `eval $(docker-machine env nodeX)` - This sets a number of environment variables -- To unset these variables, use `eval $(docker-machine -u)` +- To unset these variables, use `eval $(docker-machine env -u)` .exercise[