Docker image for accessing CQL shell over SSL with client auth enabled. Especially useful when running in Kubernetes or a private VPS.
Run like this:
docker run -it -e cert=$(cat cert.pem) -e key=$(cat key.pem) dols3m/secure-cql-shell host portUse image tags with the -scylla suffix for the Scylla flavor of cqlsh:
docker run -it -e cert=$(cat cert.pem) -e key=$(cat key.pem) dols3m/secure-cql-shell:latest-scylla host portOr with kubectl:
kubectl run secure-cql-shell --rm -it --env cert=$(cat cert.pem) --env key=$(cat key.pem) --image dols3m/secure-cql-shell -- host port