A minimal simple Envoy proxy.
PORT
the port on which the proxy starts (default8080
).TARGET_HOST
the target host to proxy to (default172.17.0.1
).$TARGET_PORT
the target port to proxy to80
/443
(default443
).
docker run -e TARGET_HOST=goolge.com -e TARGET_PORT=443 -e PORT=80 -p 8080:80 envoy-proxy
docker build -t envoy-proxy .