dashboardjavacloudcoapiotiot-analyticsiot-platformiot-solutionskafkalwm2mmicroservicesmiddlewaremqttnettyplatformsnmpthingsboardvisualizationwebsocketswidgets
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
585 B
34 lines
585 B
version: '3.3'
|
|
services:
|
|
zookeeper:
|
|
image: wurstmeister/zookeeper
|
|
networks:
|
|
- core
|
|
ports:
|
|
- "2181:2181"
|
|
|
|
cassandra-tb:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile.cassandra
|
|
image: cassandra
|
|
networks:
|
|
- core
|
|
ports:
|
|
- "7199:7199"
|
|
- "9160:9160"
|
|
- "9042:9042"
|
|
volumes:
|
|
- /cassandra:/var/lib/cassandra
|
|
- ./db-schema:/docker-entrypoint-initdb.d/
|
|
redis:
|
|
image: redis:4.0
|
|
networks:
|
|
- core
|
|
command: redis-server --maxclients 2000
|
|
ports:
|
|
- "6379:6379"
|
|
|
|
networks:
|
|
core:
|
|
|
|
|