Image Overview: envoy
ReferenceChainguard ImagesProduct
On this page
experimental
cgr.dev/chainguard/envoy
Tags | Aliases |
---|---|
latest |
1 , 1.26 , 1.26.1 , 1.26.1-r0 |
Envoy Cloud-native high-performance edge/middle/service proxy
Get It!
The image is available on cgr.dev
:
docker pull cgr.dev/chainguard/envoy
Using Envoy
To run with Docker using default configuration
docker run --platform=linux/amd64 -p10000:10000 -p 9901:9901 --rm cgr.dev/chainguard/envoy envoy --config-path /etc/envoy/envoy.yaml
Or to use a customised envoy configuratiom see https://www.envoyproxy.io/docs/envoy/latest/configuration/overview/overview and mount your file into the envoy container, e.g. -v $PWD/config:/etc/envoy
docker run --platform=linux/amd64 -p10000:10000 -p 9901:9901 --rm -v $PWD/config:/etc/envoy cgr.dev/chainguard/envoy envoy --config-path /etc/envoy/envoy.yaml