Skip to content

Commit 614d438

Browse files
committed
Update versions in README to 0.1.5
1 parent 508d09e commit 614d438

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -81,15 +81,15 @@ To pass configuration to `cql-proxy`, either command-line flags, environment var
8181
8282
```sh
8383
docker run -p 9042:9042 \
84-
--rm datastax/cql-proxy:v0.1.4 \
84+
--rm datastax/cql-proxy:v0.1.5 \
8585
--astra-token <astra-token> --astra-database-id <astra-datbase-id>
8686
```
8787
8888
### Using environment variables
8989
9090
```sh
9191
docker run -p 9042:9042 \
92-
--rm datastax/cql-proxy:v0.1.4 \
92+
--rm datastax/cql-proxy:v0.1.5 \
9393
-e ASTRA_TOKEN=<astra-token> -e ASTRA_DATABASE_ID=<astra-datbase-id>
9494
```
9595
@@ -196,25 +196,25 @@ There are three methods for using `cql-proxy`:
196196
197197
```sh
198198
docker run -p 9042:9042 \
199-
datastax/cql-proxy:v0.1.4 \
199+
datastax/cql-proxy:v0.1.5 \
200200
--astra-token <astra-token> --astra-database-id <astra-database-id>
201201
```
202202
203203
The `<astra-token>` can be generated using these [instructions]. The proxy also supports using the [Astra Secure Connect Bundle][bundle], but it requires mounting the bundle to a volume in the container:
204204
205205
```sh
206206
docker run -v <your-secure-connect-bundle.zip>:/tmp/scb.zip -p 9042:9042 \
207-
--rm datastax/cql-proxy:v0.1.4 \
207+
--rm datastax/cql-proxy:v0.1.5 \
208208
--astra-bundle /tmp/scb.zip --username <astra-client-id> --password <astra-client-secret>
209209
```
210210
- [Apache Cassandra][cassandra] cluster:
211211
212212
```sh
213213
docker run -p 9042:9042 \
214-
datastax/cql-proxy:v0.1.4 \
214+
datastax/cql-proxy:v0.1.5 \
215215
--contact-points <cluster node IPs or DNS names> [--username <username>] [--password <password>]
216216
```
217-
If you wish to have the docker image removed after you are done with it, add `--rm` before the image name `datastax/cql-proxy:v0.1.4`.
217+
If you wish to have the docker image removed after you are done with it, add `--rm` before the image name `datastax/cql-proxy:v0.1.5`.
218218
219219
### Use Kubernetes
220220

0 commit comments

Comments
 (0)