Skip to content

Commit 9610c22

Browse files
authored
Updated RC-related verbiage (#163)
Updated RC-related verbiage as per DOCS-6850. <!-- CURSOR_SUMMARY --> --- > [!NOTE] > **Low Risk** > Documentation-only changes; low risk beyond potential user confusion if the updated run instructions are incorrect. > > **Overview** > Updates `README.md` run instructions for Linux/Intel Macs to **separately document running the latest production image** vs running the **SingleStore 9.1 release candidate** via `SINGLESTORE_VERSION="rc:9.1"`. > > Adds an explicit note for 9.1 RC users to remove old RC images/containers and re-pull to ensure 9.1-specific features are enabled. > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit 3598626. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY -->
1 parent 7fc95ad commit 9610c22

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

README.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,35 @@ When running a Docker container, either with or without a free edition license,
4848

4949
*See next section for Apple silicon instructions.*
5050

51+
If you want to run the latest production release of SingleStore:
52+
53+
```bash
54+
docker run \
55+
-d --name singlestoredb-dev \
56+
-e ROOT_PASSWORD="YOUR SINGLESTORE ROOT PASSWORD" \
57+
-p 3306:3306 -p 8080:8080 -p 9000:9000 \
58+
ghcr.io/singlestore-labs/singlestoredb-dev:latest
59+
```
60+
61+
If you want to run the latest SingleStore 9.1 release candidate (RC):
62+
5163
```bash
5264
docker run \
5365
-d --name singlestoredb-dev \
5466
-e ROOT_PASSWORD="YOUR SINGLESTORE ROOT PASSWORD" \
67+
-e SINGLESTORE_VERSION="rc:9.1" \
5568
-p 3306:3306 -p 8080:8080 -p 9000:9000 \
5669
ghcr.io/singlestore-labs/singlestoredb-dev:latest
5770
```
5871

72+
> **Note**
73+
>
74+
> If you had previously run a SingleStore 9.1 RC Dev image and found that 9.1-specific features were not working as expected (such as `fv_vector_f16_type`):
75+
> * Remove (delete) your existing 9.1 RC Dev image and container
76+
> * Run the latest 9.1 RC Dev image
77+
>
78+
> Performing these steps will ensure that all SingleStore 9.1 features are enabled in the 9.1 RC Dev image.
79+
5980
If you want to configure a specific license, simply pass it as an environment variable:
6081

6182
```bash

0 commit comments

Comments
 (0)