Closed
Description
Please update ( or add to ) the section on the main description page of Docker Hub ( https://hub.docker.com/_/cassandra?tab=description#connect-to-cassandra-from-cqlsh ). The example illustrates using a "--network some-network" ... which isn't clear why it's needed in a single-instance mode. Please either
- provide a short sentence or two about why the --network arg would be needed ( is it only for multicast in cluster mode? does it make it more secure? ), or
- maybe provide an example in the #connect-to-cassandra-from-cqlsh section that uses container-linking (ex in non-cluster: docker run -it --rm --link=some-cassandra:some-cassandra cassandra:3.11 cqlsh some-cassandra )
I'm new to running Cassandra in a docker container, and had to fiddle with the examples just to get started as a simple POC. I'm assuming that option #2 is a bad idea, but I'm running on a home network, and didn't understand the need for the --network arg.