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.
47 lines
919 B
47 lines
919 B
#
|
|
# SPDX-FileCopyrightText: Copyright The Thingsboard Authors
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
services:
|
|
postgres:
|
|
restart: always
|
|
image: "postgres:16"
|
|
ports:
|
|
- "5432"
|
|
environment:
|
|
POSTGRES_DB: thingsboard
|
|
POSTGRES_PASSWORD: postgres
|
|
volumes:
|
|
- ./tb-node/postgres:/var/lib/postgresql/data
|
|
cassandra:
|
|
restart: always
|
|
image: "cassandra:5.0"
|
|
ports:
|
|
- "9042"
|
|
volumes:
|
|
- ./tb-node/cassandra:/var/lib/cassandra
|
|
tb-core1:
|
|
env_file:
|
|
- tb-node.hybrid.env
|
|
depends_on:
|
|
- postgres
|
|
- cassandra
|
|
tb-core2:
|
|
env_file:
|
|
- tb-node.hybrid.env
|
|
depends_on:
|
|
- postgres
|
|
- cassandra
|
|
tb-rule-engine1:
|
|
env_file:
|
|
- tb-node.hybrid.env
|
|
depends_on:
|
|
- postgres
|
|
- cassandra
|
|
tb-rule-engine2:
|
|
env_file:
|
|
- tb-node.hybrid.env
|
|
depends_on:
|
|
- postgres
|
|
- cassandra
|
|
|