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

docs: Fix example composition build instructions #22132

Merged
merged 1 commit into from
Jul 14, 2022
Merged
Show file tree
Hide file tree
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
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