Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docs based on comments from a third-party #44

Merged
merged 1 commit into from
Aug 29, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions docs/install/sandboxes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,13 @@ First let's create a new machine which will hold the containers::
$ docker-machine create --driver virtualbox default
$ eval $(docker-machine env default)

**Step 4: Start all of our containers**
**Step 4: Clone the Envoy repo, and start all of our containers**

::
If you have not cloned the envoy repo, clone it with ``git clone git@github.com:lyft/envoy``
or ``git clone https://github.com/lyft/envoy.git``::

$ pwd
/src/envoy/example
envoy/example
$ docker-compose up --build -d
$ docker-compose ps
Name Command State Ports
Expand Down Expand Up @@ -119,8 +120,8 @@ of envoy.::
Creating and starting example_service1_2 ... done
Creating and starting example_service1_3 ... done

Now if we send a request to service1, the fron envoy will load balance the
request by doing a round robin of the three service1 machines::
Now if we send a request to service1 multiple times, the front envoy will load balance the
requests by doing a round robin of the three service1 machines::

$ curl -v $(docker-machine ip default):8000/service/1
* Trying 192.168.99.100...
Expand Down