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

release: sourcegraph@5.1.1 #54463

Merged
merged 4 commits into from
Jun 30, 2023
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions client/web/BUILD.bazel

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions cmd/frontend/internal/app/updatecheck/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,17 +36,17 @@ var (
// non-cluster, non-docker-compose, and non-pure-docker installations what the latest
// version is. The version here _must_ be available at https://hub.docker.com/r/sourcegraph/server/tags/
// before landing in master.
latestReleaseDockerServerImageBuild = newPingResponse("5.1.0")
latestReleaseDockerServerImageBuild = newPingResponse("5.1.1")

// latestReleaseKubernetesBuild is only used by sourcegraph.com to tell existing Sourcegraph
// cluster deployments what the latest version is. The version here _must_ be available in
// a tag at https://github.com/sourcegraph/deploy-sourcegraph before landing in master.
latestReleaseKubernetesBuild = newPingResponse("5.1.0")
latestReleaseKubernetesBuild = newPingResponse("5.1.1")

// latestReleaseDockerComposeOrPureDocker is only used by sourcegraph.com to tell existing Sourcegraph
// Docker Compose or Pure Docker deployments what the latest version is. The version here _must_ be
// available in a tag at https://github.com/sourcegraph/deploy-sourcegraph-docker before landing in master.
latestReleaseDockerComposeOrPureDocker = newPingResponse("5.1.0")
latestReleaseDockerComposeOrPureDocker = newPingResponse("5.1.1")

// latestReleaseApp is only used by sourcegraph.com to tell existing Sourcegraph
// App instances what the latest version is. The version here _must_ be available for download/released
Expand Down
3 changes: 3 additions & 0 deletions cmd/migrator/BUILD.bazel

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion cmd/migrator/generate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ git_versions=(
v4.4.0 v4.4.1 v4.4.2
v4.5.0 v4.5.1
v5.0.0 v5.0.1 v5.0.2 v5.0.3 v5.0.4
v5.1.0)
v5.1.0 v5.1.1)

for version in "${git_versions[@]}"; do
download_github "${version}"
Expand Down
2 changes: 1 addition & 1 deletion doc/admin/deploy/docker-compose/aws.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ set -euxo pipefail
###############################################################################
# Please read the notes below the script if you are cloning a private repository
DEPLOY_SOURCEGRAPH_DOCKER_FORK_CLONE_URL='https://github.com/sourcegraph/deploy-sourcegraph-docker.git'
DEPLOY_SOURCEGRAPH_DOCKER_FORK_REVISION='v5.1.0'
DEPLOY_SOURCEGRAPH_DOCKER_FORK_REVISION='v5.1.1'
##################### NO CHANGES REQUIRED BELOW THIS LINE #####################
DEPLOY_SOURCEGRAPH_DOCKER_CHECKOUT='/home/ec2-user/deploy-sourcegraph-docker'
DOCKER_COMPOSE_VERSION='1.29.2'
Expand Down
2 changes: 1 addition & 1 deletion doc/admin/deploy/docker-compose/azure.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ set -euxo pipefail
###############################################################################
# Please read the notes below the script if you are cloning a private repository
DEPLOY_SOURCEGRAPH_DOCKER_FORK_CLONE_URL='https://github.com/sourcegraph/deploy-sourcegraph-docker.git'
DEPLOY_SOURCEGRAPH_DOCKER_FORK_REVISION='v5.1.0'
DEPLOY_SOURCEGRAPH_DOCKER_FORK_REVISION='v5.1.1'
##################### NO CHANGES REQUIRED BELOW THIS LINE #####################
DEPLOY_SOURCEGRAPH_DOCKER_CHECKOUT='/root/deploy-sourcegraph-docker'
DOCKER_COMPOSE_VERSION='1.29.2'
Expand Down
2 changes: 1 addition & 1 deletion doc/admin/deploy/docker-compose/digitalocean.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ set -euxo pipefail
###############################################################################
# Please read the notes below the script if you are cloning a private repository
DEPLOY_SOURCEGRAPH_DOCKER_FORK_CLONE_URL='https://github.com/sourcegraph/deploy-sourcegraph-docker.git'
DEPLOY_SOURCEGRAPH_DOCKER_FORK_REVISION='v5.1.0'
DEPLOY_SOURCEGRAPH_DOCKER_FORK_REVISION='v5.1.1'
##################### NO CHANGES REQUIRED BELOW THIS LINE #####################
DEPLOY_SOURCEGRAPH_DOCKER_CHECKOUT='/root/deploy-sourcegraph-docker'
DOCKER_DATA_ROOT='/mnt/docker-data'
Expand Down
2 changes: 1 addition & 1 deletion doc/admin/deploy/docker-compose/google_cloud.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ set -euxo pipefail
###############################################################################
# Please read the notes below the script if you are cloning a private repository
DEPLOY_SOURCEGRAPH_DOCKER_FORK_CLONE_URL='https://github.com/sourcegraph/deploy-sourcegraph-docker.git'
DEPLOY_SOURCEGRAPH_DOCKER_FORK_REVISION='v5.1.0'
DEPLOY_SOURCEGRAPH_DOCKER_FORK_REVISION='v5.1.1'
##################### NO CHANGES REQUIRED BELOW THIS LINE #####################
# IMPORTANT: DO NOT MAKE ANY CHANGES FROM THIS POINT ONWARD
DEPLOY_SOURCEGRAPH_DOCKER_CHECKOUT='/root/deploy-sourcegraph-docker'
Expand Down
2 changes: 1 addition & 1 deletion doc/admin/deploy/docker-compose/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ Continue with the following steps *after* you have created a public or private c

```bash
# Specify the version you want to install
export SOURCEGRAPH_VERSION="v5.1.0"
export SOURCEGRAPH_VERSION="v5.1.1"
# Check out the selected version for use, in a new branch called "release"
git checkout $SOURCEGRAPH_VERSION -b release
```
Expand Down
2 changes: 1 addition & 1 deletion doc/admin/deploy/docker-single-container/aws.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ This tutorial shows you how to deploy [single-container Sourcegraph with Docker]
- usermod -a -G docker ec2-user

# Install and run Sourcegraph. Restart the container upon subsequent reboots
- [ sh, -c, 'docker run -d --publish 80:7080 --publish 443:7080 --publish 127.0.0.1:3370:3370 --restart unless-stopped --volume /home/ec2-user/.sourcegraph/config:/etc/sourcegraph --volume /home/ec2-user/.sourcegraph/data:/var/opt/sourcegraph sourcegraph/server:5.1.0' ]
- [ sh, -c, 'docker run -d --publish 80:7080 --publish 443:7080 --publish 127.0.0.1:3370:3370 --restart unless-stopped --volume /home/ec2-user/.sourcegraph/config:/etc/sourcegraph --volume /home/ec2-user/.sourcegraph/data:/var/opt/sourcegraph sourcegraph/server:5.1.1' ]
```

- Select **Next: ...** until you get to the **Configure Security Group** page. Then add the following rules:
Expand Down
2 changes: 1 addition & 1 deletion doc/admin/deploy/docker-single-container/digitalocean.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ This tutorial shows you how to deploy [single-container Sourcegraph with Docker]
1. Run the Sourcegraph Docker image as a daemon:

```
docker run -d --publish 80:7080 --publish 443:7443 --restart unless-stopped --volume /root/.sourcegraph/config:/etc/sourcegraph --volume /root/.sourcegraph/data:/var/opt/sourcegraph sourcegraph/server:5.1.0
docker run -d --publish 80:7080 --publish 443:7443 --restart unless-stopped --volume /root/.sourcegraph/config:/etc/sourcegraph --volume /root/.sourcegraph/data:/var/opt/sourcegraph sourcegraph/server:5.1.1
```
1. Navigate to the droplet's IP address to finish initializing Sourcegraph. If you have configured a
DNS entry for the IP, configure `externalURL` to reflect that.
Expand Down
2 changes: 1 addition & 1 deletion doc/admin/deploy/docker-single-container/google_cloud.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ This tutorial shows you how to deploy [single-container Sourcegraph with Docker]
sudo apt-get install -y docker-ce
mkdir -p /root/.sourcegraph/config
mkdir -p /root/.sourcegraph/data
docker run -d --publish 80:7080 --publish 443:7443 --restart unless-stopped --volume /root/.sourcegraph/config:/etc/sourcegraph --volume /root/.sourcegraph/data:/var/opt/sourcegraph sourcegraph/server:5.1.0
docker run -d --publish 80:7080 --publish 443:7443 --restart unless-stopped --volume /root/.sourcegraph/config:/etc/sourcegraph --volume /root/.sourcegraph/data:/var/opt/sourcegraph sourcegraph/server:5.1.1
```

- Create your VM, then navigate to its public IP address.
Expand Down
10 changes: 5 additions & 5 deletions doc/admin/deploy/docker-single-container/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ It takes less than a minute to run and install Sourcegraph using Docker:
This uses line breaks that are rendered but not copy-pasted to the clipboard.
-->

<pre class="pre-wrap start-sourcegraph-command"><code>docker run<span class="virtual-br"></span> --publish 7080:7080 --publish 127.0.0.1:3370:3370 --rm<span class="virtual-br"></span> --volume ~/.sourcegraph/config:/etc/sourcegraph<span class="virtual-br"></span> --volume ~/.sourcegraph/data:/var/opt/sourcegraph<span class="virtual-br"></span> sourcegraph/server:5.1.0</code></pre>
<pre class="pre-wrap start-sourcegraph-command"><code>docker run<span class="virtual-br"></span> --publish 7080:7080 --publish 127.0.0.1:3370:3370 --rm<span class="virtual-br"></span> --volume ~/.sourcegraph/config:/etc/sourcegraph<span class="virtual-br"></span> --volume ~/.sourcegraph/data:/var/opt/sourcegraph<span class="virtual-br"></span> sourcegraph/server:5.1.1</code></pre>

Once the server is ready (logo is displayed in the terminal), navigate to the hostname or IP address on port `7080`. Create the admin account, then you'll be guided through setting up Sourcegraph for code searching and navigation.

Expand Down Expand Up @@ -46,7 +46,7 @@ For example, to mount a `.gitconfig`, create a file `/mnt/sourcegraph/config/git
Alternatively you can create a new Docker image which inherits from Sourcegraph and then mutates the environment:

```dockerfile
FROM sourcegraph/server:5.1.0
FROM sourcegraph/server:5.1.1

COPY gitconfig /etc/gitconfig
COPY ssh /root/.ssh
Expand Down Expand Up @@ -87,7 +87,7 @@ This is required to [collect debug data](../../pprof.md).
The docker run command for single-container Sourcegraph needs an additional publish flag to expose the debug port:

```sh
$ docker run --publish 7080:7080 --publish 127.0.0.1:3370:3370 --publish 127.0.0.1:6060:6060 --rm --volume ~/.sourcegraph/config:/etc/sourcegraph --volume ~/.sourcegraph/data:/var/opt/sourcegraph sourcegraph/server:5.1.0
$ docker run --publish 7080:7080 --publish 127.0.0.1:3370:3370 --publish 127.0.0.1:6060:6060 --rm --volume ~/.sourcegraph/config:/etc/sourcegraph --volume ~/.sourcegraph/data:/var/opt/sourcegraph sourcegraph/server:5.1.1
```

If Sourcegraph is deployed to a remote server, then access via an SSH tunnel using a tool
Expand All @@ -105,7 +105,7 @@ Add the following to your docker run command:
```sh
$ docker run [...]
-e (YOUR CODE)
sourcegraph/server:5.1.0
sourcegraph/server:5.1.1
```

## Operation
Expand Down Expand Up @@ -254,7 +254,7 @@ Sourcegraph can be **tested** on Windows 10 using roughly the same steps provide
1. [Install Docker for Windows](https://docs.docker.com/docker-for-windows/install/)
2. Using a command prompt, follow the same [installation steps provided above](#install-sourcegraph-with-docker) but remove the `--volume` arguments. For example by pasting this:

<pre class="pre-wrap"><code>docker run<span class="virtual-br"></span> --publish 7080:7080 --publish 127.0.0.1:3370:3370 --rm<span class="virtual-br"></span> sourcegraph/server:5.1.0</code></pre>
<pre class="pre-wrap"><code>docker run<span class="virtual-br"></span> --publish 7080:7080 --publish 127.0.0.1:3370:3370 --rm<span class="virtual-br"></span> sourcegraph/server:5.1.1</code></pre>

### Low resource environments

Expand Down
16 changes: 8 additions & 8 deletions doc/admin/deploy/kubernetes/helm.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ $ helm repo add sourcegraph https://helm.sourcegraph.com/release
Install the Sourcegraph chart using default values:

```sh
$ helm install --version 5.1.0 sourcegraph sourcegraph/sourcegraph
$ helm install --version 5.1.1 sourcegraph sourcegraph/sourcegraph
```

Sourcegraph should now be available via the address set. Browsing to the url should now provide access to the Sourcegraph UI to create the initial administrator account.
Expand All @@ -81,7 +81,7 @@ Example overrides can be found in the [examples](https://github.com/sourcegraph/

Providing the override file to Helm is done with the inclusion of the values flag and the name of the file:
```sh
$ helm upgrade --install --values ./override.yaml --version 5.1.0 sourcegraph sourcegraph/sourcegraph
$ helm upgrade --install --values ./override.yaml --version 5.1.1 sourcegraph sourcegraph/sourcegraph
```
When making configuration changes, it's recommended to review the changes that will be applied—see [Reviewing Changes](#reviewing-changes).

Expand Down Expand Up @@ -575,7 +575,7 @@ The override file includes a [BackendConfig] CRD. This is necessary to instruct
**2** – Install the chart

```sh
$ helm upgrade --install --values ./override.yaml --version 5.1.0 sourcegraph sourcegraph/sourcegraph
$ helm upgrade --install --values ./override.yaml --version 5.1.1 sourcegraph sourcegraph/sourcegraph
```

It will take around 10 minutes for the load balancer to be fully ready, you may check on the status and obtain the load balancer IP using the following command:
Expand Down Expand Up @@ -694,7 +694,7 @@ storageClass:
**2** – Install the chart

```sh
$ helm upgrade --install --values ./override.yaml --version 5.1.0 sourcegraph sourcegraph/sourcegraph
$ helm upgrade --install --values ./override.yaml --version 5.1.1 sourcegraph sourcegraph/sourcegraph
```

It will take some time for the load balancer to be fully ready, use the following to check on the status and obtain the load balancer address (once available):
Expand Down Expand Up @@ -779,7 +779,7 @@ storageClass:
**2** – Install the chart

```sh
$ helm upgrade --install --values ./override.yaml --version 5.1.0 sourcegraph sourcegraph/sourcegraph
$ helm upgrade --install --values ./override.yaml --version 5.1.1 sourcegraph sourcegraph/sourcegraph
```

It will take some time for the load balancer to be fully ready, you can check on the status and obtain the load balancer address (when ready) using:
Expand Down Expand Up @@ -865,7 +865,7 @@ storageClass:
**2** – Install the chart

```sh
$ helm upgrade --install --values ./override.yaml --version 5.1.0 sourcegraph sourcegraph/sourcegraph
$ helm upgrade --install --values ./override.yaml --version 5.1.1 sourcegraph sourcegraph/sourcegraph
```

It may take some time before your ingress is up and ready to proceed. Depending on how your Ingress Controller works, you may be able to check on its status and obtain the public address of your Ingress using:
Expand Down Expand Up @@ -965,7 +965,7 @@ $ helm repo update sourcegraph
4. Install the new version:

```sh
$ helm upgrade --install -f override.yaml --version 5.1.0 sourcegraph sourcegraph/sourcegraph
$ helm upgrade --install -f override.yaml --version 5.1.1 sourcegraph sourcegraph/sourcegraph
```

5. Verify the installation has started:
Expand Down Expand Up @@ -1025,7 +1025,7 @@ If you are upgrading to **Sourcegraph 5.1 or later**, we encourage you to perfor

**Example:**
```sh
$ helm upgrade --install -n sourcegraph --set "migrator.args={upgrade,--from=3.41.0,--to=4.5.1}" sourcegraph-migrator sourcegraph/sourcegraph-migrator --version 5.1.0
$ helm upgrade --install -n sourcegraph --set "migrator.args={upgrade,--from=3.41.0,--to=4.5.1}" sourcegraph-migrator sourcegraph/sourcegraph-migrator --version 5.1.1
Release "sourcegraph-migrator" has been upgraded. Happy Helming!
NAME: sourcegraph-migrator
LAST DEPLOYED: Tue Mar 7 18:23:56 2023
Expand Down
2 changes: 1 addition & 1 deletion doc/admin/deploy/machine-images/gce.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ SSH into the VM as user `sourcegraph` and run the following command:

```bash
# Please update the version number according to the upgrade notes
helm upgrade -i -f /home/sourcegraph/deploy/install/override.yaml --version 5.1.0 sourcegraph sourcegraph/sourcegraph
helm upgrade -i -f /home/sourcegraph/deploy/install/override.yaml --version 5.1.1 sourcegraph sourcegraph/sourcegraph
# Note: /home/sourcegraph/deploy/install/override.yaml is the override file for your instance size
```

Expand Down
4 changes: 2 additions & 2 deletions doc/admin/executors/deploy_executors_kubernetes.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<p><b>We're very much looking for input and feedback on this feature.</b> You can either <a href="https://about.sourcegraph.com/contact">contact us directly</a>, <a href="https://github.com/sourcegraph/sourcegraph">file an issue</a>, or <a href="https://twitter.com/sourcegraph">tweet at us</a>.</p>
</aside>

> NOTE: This feature is available in Sourcegraph 5.1.0 and later.
> NOTE: This feature is available in Sourcegraph 5.1.1 and later.

[Kubernetes manifests](https://github.com/sourcegraph/deploy-sourcegraph-k8s) are provided to deploy Sourcegraph Executors on a running Kubernetes cluster. If you are deploying Sourcegraph with helm, charts are available [here](https://github.com/sourcegraph/deploy-sourcegraph-helm).

Expand Down Expand Up @@ -127,7 +127,7 @@ The following are Firewall rules that are _highly recommended_ when running Exec
Environment.

- Disable access to internal resources.
- Disable access to `5.1.0.254` (AWS / GCP Instance Metadata Service).
- Disable access to `5.1.1.254` (AWS / GCP Instance Metadata Service).

### Batch Changes

Expand Down
4 changes: 2 additions & 2 deletions doc/admin/external_services/postgres.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Add the following to your `docker run` command:
This uses line breaks that are rendered but not copy-pasted to the clipboard.
-->

<pre class="pre-wrap start-sourcegraph-command"><code>docker run [...]<span class="virtual-br"></span> -e PGHOST=psql1.mycompany.org<span class="virtual-br"></span> -e PGUSER=sourcegraph<span class="virtual-br"></span> -e PGPASSWORD=secret<span class="virtual-br"></span> -e PGDATABASE=sourcegraph<span class="virtual-br"></span> -e PGSSLMODE=require<span class="virtual-br"> -e CODEINTEL_PGHOST=psql2.mycompany.org<span class="virtual-br"></span> -e CODEINTEL_PGUSER=sourcegraph<span class="virtual-br"></span> -e CODEINTEL_PGPASSWORD=secret<span class="virtual-br"></span> -e CODEINTEL_PGDATABASE=sourcegraph-codeintel<span class="virtual-br"></span> -e CODEINTEL_PGSSLMODE=require<span class="virtual-br"></span> sourcegraph/server:5.1.0</code></pre>
<pre class="pre-wrap start-sourcegraph-command"><code>docker run [...]<span class="virtual-br"></span> -e PGHOST=psql1.mycompany.org<span class="virtual-br"></span> -e PGUSER=sourcegraph<span class="virtual-br"></span> -e PGPASSWORD=secret<span class="virtual-br"></span> -e PGDATABASE=sourcegraph<span class="virtual-br"></span> -e PGSSLMODE=require<span class="virtual-br"> -e CODEINTEL_PGHOST=psql2.mycompany.org<span class="virtual-br"></span> -e CODEINTEL_PGUSER=sourcegraph<span class="virtual-br"></span> -e CODEINTEL_PGPASSWORD=secret<span class="virtual-br"></span> -e CODEINTEL_PGDATABASE=sourcegraph-codeintel<span class="virtual-br"></span> -e CODEINTEL_PGSSLMODE=require<span class="virtual-br"></span> sourcegraph/server:5.1.1</code></pre>

### Docker Compose

Expand Down Expand Up @@ -193,7 +193,7 @@ When [PgBouncer] is used, we need to include `statement_cache_mode=describe` in

Add the following to your `docker run` command:

<pre class="pre-wrap start-sourcegraph-command"><code>docker run [...]<span class="virtual-br"></span> -e PGDATASOURCE="postgres://username:password@sourcegraph-pgbouncer.mycompany.com:5432/sg?statement_cache_mode=describe"<span class="virtual-br"></span> -e CODEINSIGHTS_PGDATASOURCE="postgres://username:password@sourcegraph-codeintel-pgbouncer.mycompany.com:5432/sg?statement_cache_mode=describe"<span class="virtual-br"></span> sourcegraph/server:5.1.0</code></pre>
<pre class="pre-wrap start-sourcegraph-command"><code>docker run [...]<span class="virtual-br"></span> -e PGDATASOURCE="postgres://username:password@sourcegraph-pgbouncer.mycompany.com:5432/sg?statement_cache_mode=describe"<span class="virtual-br"></span> -e CODEINSIGHTS_PGDATASOURCE="postgres://username:password@sourcegraph-codeintel-pgbouncer.mycompany.com:5432/sg?statement_cache_mode=describe"<span class="virtual-br"></span> sourcegraph/server:5.1.1</code></pre>

### Docker Compose

Expand Down
2 changes: 1 addition & 1 deletion doc/admin/external_services/redis.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ or follow the [IANA specification for Redis URLs](https://www.iana.org/assignmen
We want line breaks for readability, but backslashes to escape them do not work cross-platform.
This uses line breaks that are rendered but not copy-pasted to the clipboard.
-->
<pre class="pre-wrap"><code>docker run [...]<span class="virtual-br"></span> -e REDIS_ENDPOINT=redis.mycompany.org:6379<span class="virtual-br"></span> sourcegraph/server:5.1.0</code></pre>
<pre class="pre-wrap"><code>docker run [...]<span class="virtual-br"></span> -e REDIS_ENDPOINT=redis.mycompany.org:6379<span class="virtual-br"></span> sourcegraph/server:5.1.1</code></pre>

> NOTE: On Mac/Windows, if trying to connect to a Redis server on the same host machine, remember that Sourcegraph is running inside a Docker container inside of the Docker virtual machine. You may need to specify your actual machine IP address and not `localhost` or `127.0.0.1` as that refers to the Docker VM itself.

Expand Down
2 changes: 1 addition & 1 deletion doc/admin/http_https_configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ docker container run \
\
--volume ~/.sourcegraph/config:/etc/sourcegraph \
--volume ~/.sourcegraph/data:/var/opt/sourcegraph \
sourcegraph/server:5.1.0
sourcegraph/server:5.1.1
```

### Sourcegraph Cluster (Kubernetes)
Expand Down
Loading
Loading