This Dockerfile provides everything you need to run Cassandra in Docker out of the box. It is based on the official Cassandra Docker image.
To download this image from the public docker hub:
docker pull rstevens198238/alpine-cassandra-4.1.4
As a convenience, you can use the build script to build the alpine-cassandra
image locally.
# Build
$ ./bin/build.sh <tagging_version>
# Example
$ ./bin/build.sh 4.1.4
To run the image:
$ docker run -d -p 9042:9042 rstevens198238/alpine-cassandra-<cassandra_version>:latest
- Official Cassandra Docker repository