├── .gitattributes ├── .github └── workflows │ ├── ci.yml │ └── verify-templating.yml ├── .gitignore ├── 3.0 ├── Dockerfile └── docker-entrypoint.sh ├── 3.11 ├── Dockerfile └── docker-entrypoint.sh ├── 4.0 ├── Dockerfile └── docker-entrypoint.sh ├── 4.1 ├── Dockerfile └── docker-entrypoint.sh ├── 5.0 ├── Dockerfile └── docker-entrypoint.sh ├── Dockerfile.template ├── LICENSE ├── README.md ├── apply-templates.sh ├── docker-entrypoint.sh ├── generate-stackbrew-library.sh ├── update.sh ├── versions.json └── versions.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/cassandra/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/cassandra/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/verify-templating.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/cassandra/HEAD/.github/workflows/verify-templating.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .jq-template.awk 2 | -------------------------------------------------------------------------------- /3.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/cassandra/HEAD/3.0/Dockerfile -------------------------------------------------------------------------------- /3.0/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/cassandra/HEAD/3.0/docker-entrypoint.sh -------------------------------------------------------------------------------- /3.11/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/cassandra/HEAD/3.11/Dockerfile -------------------------------------------------------------------------------- /3.11/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/cassandra/HEAD/3.11/docker-entrypoint.sh -------------------------------------------------------------------------------- /4.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/cassandra/HEAD/4.0/Dockerfile -------------------------------------------------------------------------------- /4.0/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/cassandra/HEAD/4.0/docker-entrypoint.sh -------------------------------------------------------------------------------- /4.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/cassandra/HEAD/4.1/Dockerfile -------------------------------------------------------------------------------- /4.1/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/cassandra/HEAD/4.1/docker-entrypoint.sh -------------------------------------------------------------------------------- /5.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/cassandra/HEAD/5.0/Dockerfile -------------------------------------------------------------------------------- /5.0/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/cassandra/HEAD/5.0/docker-entrypoint.sh -------------------------------------------------------------------------------- /Dockerfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/cassandra/HEAD/Dockerfile.template -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/cassandra/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/cassandra/HEAD/README.md -------------------------------------------------------------------------------- /apply-templates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/cassandra/HEAD/apply-templates.sh -------------------------------------------------------------------------------- /docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/cassandra/HEAD/docker-entrypoint.sh -------------------------------------------------------------------------------- /generate-stackbrew-library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/cassandra/HEAD/generate-stackbrew-library.sh -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/cassandra/HEAD/update.sh -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/cassandra/HEAD/versions.json -------------------------------------------------------------------------------- /versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/cassandra/HEAD/versions.sh --------------------------------------------------------------------------------