From 9bc3e740086980d8967a59aa2906c3886fa5c984 Mon Sep 17 00:00:00 2001 From: Noah Berman <38916274+noah-berman@users.noreply.github.com> Date: Thu, 5 Sep 2024 16:23:18 -0400 Subject: [PATCH] Update docker-compose version instructions --- docs/admin/deploy/docker-compose/index.mdx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/admin/deploy/docker-compose/index.mdx b/docs/admin/deploy/docker-compose/index.mdx index bff7d33c7..fda35ac4d 100644 --- a/docs/admin/deploy/docker-compose/index.mdx +++ b/docs/admin/deploy/docker-compose/index.mdx @@ -92,7 +92,7 @@ For example, GitHub users can include their personal access token to clone repos https://@github.com//.git ``` -#### Configure your deployment repository +### Configure your deployment repository Continue with the following steps *after* you have created a public or private copy of the [deployment repository](https://github.com/sourcegraph/deploy-sourcegraph-docker/): @@ -116,8 +116,9 @@ Continue with the following steps *after* you have created a public or private c - It also allows us to track all of the customizations made to your Sourcegraph instance. ```bash - # Specify the version you want to install - export SOURCEGRAPH_VERSION="v5.3.9104" + # Specify the version you want to install - find the latest version at sourcegraph.com/changelog + # Version should be formatted as "vX.X.XX", e.g. "v5.6.2535" + export SOURCEGRAPH_VERSION="" # Check out the selected version for use, in a new branch called "release" git checkout $SOURCEGRAPH_VERSION -b release ```