docker run --name pipercass -p 9042:9042 -d cassandra:latestIf you already created pipercass container, you can start it with:
docker start pipercassif you want to run Cassandra shell to view tables and data, you can run:
docker exec -it pipercass cqlshyou can view tables with:
describe tables;if you want to view data in a table, you can run:
select * from <keyspace>.<table_name>;6