From a693acdc8981631d670d79c57f0d88c638aeb1a2 Mon Sep 17 00:00:00 2001 From: Jack Wotherspoon Date: Tue, 9 Apr 2024 12:53:00 -0400 Subject: [PATCH] chore: update automation of Proxy version (#2175) --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 121eb95ee..35c41d5e1 100644 --- a/README.md +++ b/README.md @@ -418,9 +418,10 @@ The containers have the proxy as an `ENTRYPOINT` so, to use the proxy from a container, all you need to do is specify options using the command, and expose the proxy's internal port to the host. For example, you can use: + ```shell docker run --publish : \ - gcr.io/cloud-sql-connectors/cloud-sql-proxy:2.8.2 \ + gcr.io/cloud-sql-connectors/cloud-sql-proxy:2.10.1 \ --address "0.0.0.0" --port ``` @@ -447,11 +448,12 @@ For example, a full command using a JSON credentials file might look like docker run \ --publish : \ --mount type=bind,source="$(pwd)"/sa.json,target=/config/sa.json \ - gcr.io/cloud-sql-connectors/cloud-sql-proxy:2.8.2 \ + gcr.io/cloud-sql-connectors/cloud-sql-proxy:2.10.1 \ --address 0.0.0.0 \ --port \ --credentials-file /config/sa.json ``` + ## Running as a Kubernetes Sidecar