Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
10 changes: 7 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,15 @@ def setup(app):

# Setup global substitutions
if 'pre-release' in release_level:
substitutions = [('|envoy_docker_image|', 'envoy-dev:{}'.format(blob_sha)),
('|envoy_windows_docker_image|', 'envoy-windows-dev:{}'.format(blob_sha))]
substitutions = [
('|envoy_docker_image|', 'envoy-dev:{}'.format(blob_sha)),
('|envoy_windows_docker_image|', 'envoy-windows-dev:{}'.format(blob_sha)),
('|envoy_distroless_docker_image|', 'envoy-distroless-dev:{}'.format(blob_sha))
]
else:
substitutions = [('|envoy_docker_image|', 'envoy:{}'.format(blob_sha)),
('|envoy_windows_docker_image|', 'envoy-windows:{}'.format(blob_sha))]
('|envoy_windows_docker_image|', 'envoy-windows:{}'.format(blob_sha)),
('|envoy_distroless_docker_image|', 'envoy-distroless:{}'.format(blob_sha))]

# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
Expand Down
19 changes: 19 additions & 0 deletions docs/root/start/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,13 @@ The following commands will pull and show the Envoy version of current images.
$ docker pull envoyproxy/|envoy_docker_image|
$ docker run --rm envoyproxy/|envoy_docker_image| --version

.. tab:: Envoy (distroless)

.. substitution-code-block:: console

$ docker pull envoyproxy/|envoy_distroless_docker_image|
$ docker run --rm envoyproxy/|envoy_distroless_docker_image| --version

.. tab:: Get Envoy

.. code-block:: console
Expand Down Expand Up @@ -249,6 +256,18 @@ The following table shows the available Docker images
-
- See Docker Hub
- See Docker Hub
* - `envoyproxy/envoy-distroless <https://hub.docker.com/r/envoyproxy/envoy-distroless/tags/>`_
Comment thread
daixiang0 marked this conversation as resolved.
Outdated
- Build image on top of distroless images.
Comment thread
daixiang0 marked this conversation as resolved.
Outdated
-
-
- See Docker Hub
- See Docker Hub
* - `envoyproxy/envoy-distroless-dev <https://hub.docker.com/r/envoyproxy/envoy-distroless-dev/tags/>`_
- Build image on top of distroless images.
Comment thread
daixiang0 marked this conversation as resolved.
Outdated
-
-
- See Docker Hub
- See Docker Hub

.. note::

Expand Down