WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit 3338441

Browse files
update version info in google-cloud-run docs (#1573)
* update version info in google-cloud-run docs * Update docs/content/install/install-on-google-cloud-run.md Co-Authored-By: Marwan Sulaiman <[email protected]> Co-authored-by: Marwan Sulaiman <[email protected]>
1 parent e1374be commit 3338441

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

docs/content/install/install-on-google-cloud-run.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ This guide assumes you have completed the following tasks:
1717

1818
- Signed up for Google Cloud
1919
- Installed the [gcloud](https://cloud.google.com/sdk/install) command line tool
20-
- Installed the beta plugin for ghe gcloud command line tool ([this is how to set it up](https://cloud.google.com/run/docs/setup))
20+
- Installed the beta plugin for the gcloud command line tool ([this is how to set it up](https://cloud.google.com/run/docs/setup))
2121
- Created a (GCS) bucket for your go modules
2222

2323
### Setup a GCS Bucket
@@ -42,19 +42,20 @@ $ export GCS_BUCKET=your-bucket-name
4242

4343
You will then need to push a copy of the Athens docker image to your google cloud container registry.
4444

45+
Below is an example using v0.7.2, for the latest version, check out the [latest Athens release](https://github.com/gomods/athens/releases)
4546
```console
46-
$ docker pull gomods/athens:v0.6.0
47+
$ docker pull gomods/athens:v0.7.2
4748

48-
$ docker tag gomods/athens:v0.6.0 gcr.io/$GOOGLE_CLOUD_PROJECT/athens:v0.6.0
49+
$ docker tag gomods/athens:v0.7.2 gcr.io/$GOOGLE_CLOUD_PROJECT/athens:v0.7.2
4950

50-
$ gcloud builds submit --tag gcr.io/$GOOGLE_CLOUD_PROJECT/athens:v0.6.0
51+
$ gcloud builds submit --tag gcr.io/$GOOGLE_CLOUD_PROJECT/athens:v0.7.2
5152
```
5253

5354
Once you have the container image in your registry you can use `gcloud` to provision your Athens instance.
5455

5556
```console
5657
$ gcloud beta run deploy \
57-
--image gcr.io/$GOOGLE_CLOUD_PROJECT/athens:v0.6.0 \
58+
--image gcr.io/$GOOGLE_CLOUD_PROJECT/athens:v0.7.2 \
5859
--platform managed \
5960
--region $ATHENS_REGION \
6061
--allow-unauthenticated \

0 commit comments

Comments
 (0)