How to resolve this error: cql-proxy: error: must provide either bundle path, token, or contact points This is my docker-compose.yml:
cassandra-service:
image: datastax/cql-proxy:v0.1.2
container_name: cassandra-container
hostname: cassandra-service
ports:
- 9042:9042
networks:
- clicknrate-network
restart: always
volumes:
- ./secure-connect-clicknrate.zip:/secrets/secure-connect-clicknrate.zip
environment:
- ASTRA-TOKEN=AstraCS:********
- ASTRA-DATABASE-ID=*******
- ASTRA-API-URL=https://api.astra.datastax.com
- PORT=9042
- DATA-CENTER=dc1
- USERNAME=******
- PASSWORD=*****
- KEYSPACE=clicknrate
- ASTRA-BUNDLE=/secrets/secure-connect-clicknrate.zip
- CONTACT-POINTS=cassandra-service
- SCHEMA_ACTION=CREATE_IF_NOT_EXISTS
My application is a java spring boot application running with docker-compose.