Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docker-compose version instructions #627

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions docs/admin/deploy/docker-compose/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ For example, GitHub users can include their personal access token to clone repos
https://<PERSONAL-ACCESS-TOKEN>@github.com/<USERNAME>/<REPO>.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/):

Expand All @@ -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
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should probably point to our Releases page instead of the 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
```
Expand Down
Loading