Skip to content

Instantly share code, notes, and snippets.

@just1689
Created October 18, 2018 21:34
Show Gist options
  • Select an option

  • Save just1689/e84cd63dbfc9040e5475dc37651e484a to your computer and use it in GitHub Desktop.

Select an option

Save just1689/e84cd63dbfc9040e5475dc37651e484a to your computer and use it in GitHub Desktop.
version: "3"
services:
scylla-node1:
build: ./scylla
restart: always
networks:
web:
environment:
- DC1=DC1
- SEEDS=scylla-node1,scylla-node2
- CQLSH_HOST=scylla-node1
scylla-node2:
build: ./scylla
restart: always
networks:
web:
environment:
- DC1=DC1
- SEEDS=scylla-node1,scylla-node2
- CQLSH_HOST=scylla-node2
scylla-node3:
build: ./scylla
restart: always
networks:
web:
environment:
- DC1=DC1
- SEEDS=scylla-node1,scylla-node2
- CQLSH_HOST=scylla-node3
networks:
web:
driver: bridge
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment