From e12f9221010eb6078d4afb8fc6bc246bacdd24b7 Mon Sep 17 00:00:00 2001 From: Ivan Shvedunov Date: Tue, 25 Oct 2016 20:08:11 +0300 Subject: [PATCH] Fix remote build instructions --- build-tools/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-tools/README.md b/build-tools/README.md index e3d17d0b846..de9768bf40f 100644 --- a/build-tools/README.md +++ b/build-tools/README.md @@ -82,10 +82,10 @@ docker-machine create \ eval $(docker-machine env ${KUBE_BUILD_VM}) # Pin down the port that rsync will be exposed on on the remote machine -export KUBE_RSYNC_PORT=8370 +export KUBE_RSYNC_PORT=8730 # forward local 8730 to that machine so that rsync works -docker-machine ssh ${KUBE_BUILD_VM} -L ${KUBE_RSYNC_PORT}:localhost:8730 -N & +docker-machine ssh ${KUBE_BUILD_VM} -L ${KUBE_RSYNC_PORT}:localhost:${KUBE_RSYNC_PORT} -N & ``` Look at `docker-machine stop`, `docker-machine start` and `docker-machine rm` to manage this VM.