Skip to content

Instantly share code, notes, and snippets.

@hakimkal
Created September 24, 2025 21:43
Show Gist options
  • Select an option

  • Save hakimkal/13982025dc9283dbea0b272c3198123d to your computer and use it in GitHub Desktop.

Select an option

Save hakimkal/13982025dc9283dbea0b272c3198123d to your computer and use it in GitHub Desktop.
Scylladb Docker Compose file
services:
scylla:
image: scylladb/scylla:latest
container_name: scylla
restart: unless-stopped
ports:
- "9042:9042" # CQL native transport
- "9180:9180" # Alternator API (optional)
- "10000:10000" # for scylla manager (optional)
volumes:
- scylla-data:/var/lib/scylla
command: --smp 1 --memory 750M # optional: limit CPU & memory usage
volumes:
scylla-data:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment