Skip to content

Commit 3208c8a

Browse files
committed
Update README for v0.1.3
1 parent fb17651 commit 3208c8a

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
@@ -80,15 +80,15 @@ To pass configuration to `cql-proxy`, either command-line flags, environment var
8080
8181
```sh
8282
docker run -p 9042:9042 \
83-
--rm datastax/cql-proxy:v0.1.2 \
83+
--rm datastax/cql-proxy:v0.1.3 \
8484
--astra-token <astra-token> --astra-database-id <astra-datbase-id>
8585
```
8686
8787
### Using environment variables
8888
8989
```sh
9090
docker run -p 9042:9042 \
91-
--rm datastax/cql-proxy:v0.1.2 \
91+
--rm datastax/cql-proxy:v0.1.3 \
9292
-e ASTRA_TOKEN=<astra-token> -e ASTRA_DATABASE_ID=<astra-datbase-id>
9393
```
9494
@@ -195,25 +195,25 @@ There are three methods for using `cql-proxy`:
195195
196196
```sh
197197
docker run -p 9042:9042 \
198-
datastax/cql-proxy:v0.1.2 \
198+
datastax/cql-proxy:v0.1.3 \
199199
--astra-token <astra-token> --astra-database-id <astra-database-id>
200200
```
201201
202202
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:
203203
204204
```sh
205205
docker run -v <your-secure-connect-bundle.zip>:/tmp/scb.zip -p 9042:9042 \
206-
--rm datastax/cql-proxy:v0.1.2 \
206+
--rm datastax/cql-proxy:v0.1.3 \
207207
--astra-bundle /tmp/scb.zip --username <astra-client-id> --password <astra-client-secret>
208208
```
209209
- [Apache Cassandra][cassandra] cluster:
210210
211211
```sh
212212
docker run -p 9042:9042 \
213-
datastax/cql-proxy:v0.1.2 \
213+
datastax/cql-proxy:v0.1.3 \
214214
--contact-points <cluster node IPs or DNS names> [--username <username>] [--password <password>]
215215
```
216-
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.2`.
216+
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.3`.
217217
218218
### Use Kubernetes
219219

0 commit comments

Comments
 (0)