From 5d5c57bdf1d676454f8cc5a606f852269f16173c Mon Sep 17 00:00:00 2001 From: eediallo Date: Sat, 22 Nov 2025 19:20:16 +0000 Subject: [PATCH] Update CockroachDB version in Go development guide to latest-v25.4 --- content/guides/golang/develop.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/content/guides/golang/develop.md b/content/guides/golang/develop.md index c76a693f776f..7b5ff693a78d 100644 --- a/content/guides/golang/develop.md +++ b/content/guides/golang/develop.md @@ -89,13 +89,13 @@ $ docker run -d \ -p 26257:26257 \ -p 8080:8080 \ -v roach:/cockroach/cockroach-data \ - cockroachdb/cockroach:latest-v20.1 start-single-node \ + cockroachdb/cockroach:latest-v25.4 start-single-node \ --insecure # ... output omitted ... ``` -Notice a clever use of the tag `latest-v20.1` to make sure that you're pulling the latest patch version of 20.1. The diversity of available tags depend on the image maintainer. Here, your intent was to have the latest patched version of CockroachDB while not straying too far away from the known working version as the time goes by. To see the tags available for the CockroachDB image, you can go to the [CockroachDB page on Docker Hub](https://hub.docker.com/r/cockroachdb/cockroach/tags). +Notice a clever use of the tag `latest-v25.4` to make sure that you're pulling the latest patch version of 25.4. The diversity of available tags depend on the image maintainer. Here, your intent was to have the latest patched version of CockroachDB while not straying too far away from the known working version as the time goes by. To see the tags available for the CockroachDB image, you can go to the [CockroachDB page on Docker Hub](https://hub.docker.com/r/cockroachdb/cockroach/tags). ### Configure the database engine @@ -473,7 +473,7 @@ $ docker run -d \ -p 26257:26257 \ -p 8080:8080 \ -v roach:/cockroach/cockroach-data \ - cockroachdb/cockroach:latest-v20.1 start-single-node \ + cockroachdb/cockroach:latest-v25.4 start-single-node \ --insecure ``` @@ -548,7 +548,7 @@ services: restart_policy: condition: on-failure roach: - image: cockroachdb/cockroach:latest-v20.1 + image: cockroachdb/cockroach:latest-v25.4 container_name: roach hostname: db networks: