Hello
When I am running the temporal-cassandra-tool via the docker container, I am getting the following error
~$ sudo docker run --rm -it \
> -e CASSANDRA_HOST=“xx.xx.xx.xx” -e CASSANDRA_PORT=9042\
> --entrypoint /bin/sh temporalio/admin-tools -c\
> "temporal-cassandra-tool create-Keyspace -k temporal"
2021/03/24 12:28:47 gocql: dns error: lookup “xx.xx.xx.xx”: no such host
2021/03/24 12:28:47 error creating keyspace:gocql: unable to create session: failed to resolve any of the provided hostnames
When I run the following command on the same machine, I can confirm that Cassandra is reachable
~$ cqlsh xx.xx.xx.xx
Connected to Test Cluster at xx.xx.xx.xx:9042.
[cqlsh 5.0.1 | Cassandra 3.11.8 | CQL spec 3.4.4 | Native protocol v4]
Use HELP for help.
cqlsh> exit
I am not sure if this is some docker nuance, but can someone please help.