Skip to content

Commit

Permalink
docs: Fix example composition build instructions (#22132)
Browse files Browse the repository at this point in the history
docs: Fix example build instructions

Follow on fix for #20915

Signed-off-by: Ryan Northey <[email protected]>
  • Loading branch information
phlax authored Jul 14, 2022
1 parent 1028df2 commit 181bd2a
Show file tree
Hide file tree
Showing 11 changed files with 22 additions and 22 deletions.
4 changes: 2 additions & 2 deletions docs/root/start/sandboxes/brotli.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ Change to the ``examples/brotli`` directory and bring up the docker composition.
$ pwd
envoy/examples/brotli
$ docker-compose build --pull
$ docker-compose up -d
$ docker-compose pull
$ docker-compose up --build -d
$ docker-compose ps
Name Command State Ports
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions docs/root/start/sandboxes/cache.rst
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ Change to the ``examples/cache`` directory.
$ pwd
envoy/examples/cache
$ docker-compose build --pull
$ docker-compose up -d
$ docker-compose pull
$ docker-compose up --build -d
$ docker-compose ps
Name Command State Ports
Expand Down
4 changes: 2 additions & 2 deletions docs/root/start/sandboxes/double-proxy.rst
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,8 @@ This will load the required keys and certificates into the frontend and backend
$ pwd
envoy/examples/double-proxy
$ docker-compose build --pull
$ docker-compose up -d
$ docker-compose pull
$ docker-compose up --build -d
$ docker-compose ps
Name Command State Ports
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ The control plane has not yet been started.
$ pwd
envoy/examples/dynamic-config-cp
$ docker-compose build --pull
$ docker-compose up -d proxy
$ docker-compose pull
$ docker-compose up --build -d proxy
$ docker-compose ps
Name Command State Ports
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ This should also start two upstream ``HTTP`` echo servers, ``service1`` and ``se
$ pwd
envoy/examples/dynamic-config-fs
$ docker-compose build --pull
$ docker-compose up -d
$ docker-compose pull
$ docker-compose up --build -d
$ docker-compose ps
Name Command State Ports
Expand Down
4 changes: 2 additions & 2 deletions docs/root/start/sandboxes/front_proxy.rst
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ Change to the ``examples/front-proxy`` directory.
$ pwd
envoy/examples/front-proxy
$ docker-compose build --pull
$ docker-compose up -d
$ docker-compose pull
$ docker-compose up --build -d
$ docker-compose ps
Name Command State Ports
Expand Down
4 changes: 2 additions & 2 deletions docs/root/start/sandboxes/gzip.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ Change to the ``examples/gzip`` directory and bring up the docker composition.
$ pwd
envoy/examples/gzip
$ docker-compose build --pull
$ docker-compose up -d
$ docker-compose pull
$ docker-compose up --build -d
$ docker-compose ps
Name Command State Ports
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions docs/root/start/sandboxes/local_ratelimit.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ Change to the ``examples/local_ratelimit`` directory and bring up the docker com
$ pwd
envoy/examples/ratelimit
$ docker-compose build --pull
$ docker-compose up -d
$ docker-compose pull
$ docker-compose up --build -d
$ docker-compose ps
Name Command State Ports
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions docs/root/start/sandboxes/tls-sni.rst
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ The client proxy has no ``TLS`` termination but instead proxies three routed pat
$ pwd
envoy/examples/tls-sni
$ docker-compose build --pull
$ docker-compose up -d
$ docker-compose pull
$ docker-compose up --build -d
$ docker-compose ps
Name Command State Ports
Expand Down
4 changes: 2 additions & 2 deletions docs/root/start/sandboxes/wasm-cc.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ Change to the ``examples/wasm-cc`` folder in the Envoy repo, and start the compo
$ pwd
envoy/examples/wasm-cc
$ docker-compose build --pull
$ docker-compose up -d
$ docker-compose pull
$ docker-compose up --build -d
$ docker-compose ps
Name Command State Ports
Expand Down
4 changes: 2 additions & 2 deletions docs/root/start/sandboxes/zstd.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ Change to the ``examples/zstd`` directory and bring up the docker composition.
$ pwd
envoy/examples/zstd
$ docker-compose build --pull
$ docker-compose up -d
$ docker-compose pull
$ docker-compose up --build -d
$ docker-compose ps
Name Command State Ports
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Expand Down

0 comments on commit 181bd2a

Please sign in to comment.