Skip to content

Instantly share code, notes, and snippets.

@nbuesing
Last active June 19, 2018 01:34
Show Gist options
  • Save nbuesing/b20530caf94e3ababa430af788cf3b99 to your computer and use it in GitHub Desktop.
Save nbuesing/b20530caf94e3ababa430af788cf3b99 to your computer and use it in GitHub Desktop.
version: '3.4'
services:
cassandra:
image: cassandra:3.11
restart: unless-stopped
ports:
- "9042:9042"
volumes:
- cassandra-data:/var/lib/cassandra
- cassandra-data:/home/cassandra/.cassandra
- support:/opt
support:
image: support:latest
command: "perl -e 'while(1){ sleep 99999 }'"
volumes:
- support:/opt
volumes:
cassandra-data: {}
support: {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment