Skip to content

Commit 3d061b7

Browse files
authored
Update README.md for v0.1.1
1 parent 724d53d commit 3d061b7

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
@@ -63,15 +63,15 @@ To pass configuration to `cql-proxy`, either command-line flags or environment v
6363
6464
```sh
6565
docker run -p 9042:9042 \
66-
--rm datastax/cql-proxy:v0.1.0 \
66+
--rm datastax/cql-proxy:v0.1.1 \
6767
--astra-token <astra-token> --astra-database-id <astra-datbase-id>
6868
```
6969
7070
### Using environment variables
7171
7272
```sh
7373
docker run -p 9042:9042 \
74-
--rm datastax/cql-proxy:v0.1.0 \
74+
--rm datastax/cql-proxy:v0.1.1 \
7575
-e ASTRA_TOKEN=<astra-token> -e ASTRA_DATABASE_ID=<astra-datbase-id>
7676
```
7777
## Getting started
@@ -117,25 +117,25 @@ There are three methods for using `cql-proxy`:
117117
118118
```sh
119119
docker run -p 9042:9042 \
120-
datastax/cql-proxy:v0.1.0 \
120+
datastax/cql-proxy:v0.1.1 \
121121
--astra-token <astra-token> --astra-database-id <astra-database-id>
122122
```
123123
124124
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:
125125
126126
```sh
127127
docker run -v <your-secure-connect-bundle.zip>:/tmp/scb.zip -p 9042:9042 \
128-
--rm datastax/cql-proxy:v0.1.0 \
128+
--rm datastax/cql-proxy:v0.1.1 \
129129
--astra-bundle /tmp/scb.zip --username <astra-client-id> --password <astra-client-secret>
130130
```
131131
- [Apache Cassandra][cassandra] cluster:
132132
133133
```sh
134134
docker run -p 9042:9042 \
135-
datastax/cql-proxy:v0.1.0 \
135+
datastax/cql-proxy:v0.1.1 \
136136
--contact-points <cluster node IPs or DNS names> [--username <username>] [--password <password>]
137137
```
138-
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.0 `.
138+
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.1`.
139139
140140
### Use Kubernetes
141141

0 commit comments

Comments
 (0)