2016-12-01 11:44:35 +02:00
|
|
|
#
|
2020-01-06 16:52:41 +02:00
|
|
|
# Copyright © 2016-2020 The Thingsboard Authors
|
2016-12-01 11:44:35 +02:00
|
|
|
#
|
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
|
#
|
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
#
|
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
|
# limitations under the License.
|
|
|
|
|
#
|
|
|
|
|
|
2018-10-24 19:56:25 +03:00
|
|
|
|
|
|
|
|
version: '2.2'
|
2016-12-01 11:44:35 +02:00
|
|
|
|
|
|
|
|
services:
|
2018-10-24 19:56:25 +03:00
|
|
|
zookeeper:
|
|
|
|
|
restart: always
|
2018-10-25 19:08:06 +03:00
|
|
|
image: "zookeeper:3.5"
|
2018-10-24 19:56:25 +03:00
|
|
|
ports:
|
|
|
|
|
- "2181"
|
2018-11-20 15:24:57 +02:00
|
|
|
environment:
|
|
|
|
|
ZOO_MY_ID: 1
|
|
|
|
|
ZOO_SERVERS: server.1=zookeeper:2888:3888;zookeeper:2181
|
2018-10-24 19:56:25 +03:00
|
|
|
kafka:
|
|
|
|
|
restart: always
|
2019-07-22 15:49:29 +03:00
|
|
|
image: "wurstmeister/kafka:2.12-2.2.1"
|
2018-10-24 19:56:25 +03:00
|
|
|
ports:
|
|
|
|
|
- "9092:9092"
|
2018-10-25 19:08:06 +03:00
|
|
|
env_file:
|
|
|
|
|
- kafka.env
|
2018-10-24 19:56:25 +03:00
|
|
|
depends_on:
|
|
|
|
|
- zookeeper
|
2018-10-25 19:08:06 +03:00
|
|
|
redis:
|
2018-11-28 18:12:32 +02:00
|
|
|
restart: always
|
2018-10-25 19:08:06 +03:00
|
|
|
image: redis:4.0
|
|
|
|
|
ports:
|
|
|
|
|
- "6379"
|
2018-10-24 19:56:25 +03:00
|
|
|
tb-js-executor:
|
|
|
|
|
restart: always
|
|
|
|
|
image: "${DOCKER_REPO}/${JS_EXECUTOR_DOCKER_NAME}:${TB_VERSION}"
|
|
|
|
|
scale: 20
|
|
|
|
|
env_file:
|
|
|
|
|
- tb-js-executor.env
|
|
|
|
|
depends_on:
|
|
|
|
|
- kafka
|
2020-04-24 14:54:25 +03:00
|
|
|
tb-core1:
|
2018-10-24 19:56:25 +03:00
|
|
|
restart: always
|
|
|
|
|
image: "${DOCKER_REPO}/${TB_NODE_DOCKER_NAME}:${TB_VERSION}"
|
2016-12-01 11:44:35 +02:00
|
|
|
ports:
|
2018-10-24 19:56:25 +03:00
|
|
|
- "8080"
|
|
|
|
|
logging:
|
|
|
|
|
driver: "json-file"
|
|
|
|
|
options:
|
|
|
|
|
max-size: "200m"
|
|
|
|
|
max-file: "30"
|
2018-10-25 19:08:06 +03:00
|
|
|
environment:
|
2020-04-24 14:54:25 +03:00
|
|
|
TB_SERVICE_ID: tb-core1
|
|
|
|
|
TB_SERVICE_TYPE: tb-core
|
2016-12-01 11:44:35 +02:00
|
|
|
env_file:
|
2018-10-24 19:56:25 +03:00
|
|
|
- tb-node.env
|
2018-10-25 19:08:06 +03:00
|
|
|
volumes:
|
|
|
|
|
- ./tb-node/conf:/config
|
|
|
|
|
- ./tb-node/log:/var/log/thingsboard
|
|
|
|
|
depends_on:
|
|
|
|
|
- kafka
|
|
|
|
|
- redis
|
2018-11-01 20:52:48 +02:00
|
|
|
- tb-js-executor
|
2020-04-24 14:54:25 +03:00
|
|
|
tb-core2:
|
2018-10-25 19:08:06 +03:00
|
|
|
restart: always
|
|
|
|
|
image: "${DOCKER_REPO}/${TB_NODE_DOCKER_NAME}:${TB_VERSION}"
|
|
|
|
|
ports:
|
|
|
|
|
- "8080"
|
|
|
|
|
logging:
|
|
|
|
|
driver: "json-file"
|
|
|
|
|
options:
|
|
|
|
|
max-size: "200m"
|
|
|
|
|
max-file: "30"
|
2017-05-07 10:58:01 +03:00
|
|
|
environment:
|
2020-04-24 14:54:25 +03:00
|
|
|
TB_SERVICE_ID: tb-core2
|
|
|
|
|
TB_SERVICE_TYPE: tb-core
|
|
|
|
|
env_file:
|
|
|
|
|
- tb-node.env
|
|
|
|
|
volumes:
|
|
|
|
|
- ./tb-node/conf:/config
|
|
|
|
|
- ./tb-node/log:/var/log/thingsboard
|
|
|
|
|
depends_on:
|
|
|
|
|
- kafka
|
|
|
|
|
- redis
|
|
|
|
|
- tb-js-executor
|
|
|
|
|
tb-rule-engine1:
|
|
|
|
|
restart: always
|
|
|
|
|
image: "${DOCKER_REPO}/${TB_NODE_DOCKER_NAME}:${TB_VERSION}"
|
|
|
|
|
ports:
|
|
|
|
|
- "8080"
|
|
|
|
|
logging:
|
|
|
|
|
driver: "json-file"
|
|
|
|
|
options:
|
|
|
|
|
max-size: "200m"
|
|
|
|
|
max-file: "30"
|
|
|
|
|
environment:
|
|
|
|
|
TB_SERVICE_ID: tb-rule-engine1
|
|
|
|
|
TB_SERVICE_TYPE: tb-rule-engine
|
|
|
|
|
env_file:
|
|
|
|
|
- tb-node.env
|
|
|
|
|
volumes:
|
|
|
|
|
- ./tb-node/conf:/config
|
|
|
|
|
- ./tb-node/log:/var/log/thingsboard
|
|
|
|
|
depends_on:
|
|
|
|
|
- kafka
|
|
|
|
|
- redis
|
|
|
|
|
- tb-js-executor
|
|
|
|
|
tb-rule-engine2:
|
|
|
|
|
restart: always
|
|
|
|
|
image: "${DOCKER_REPO}/${TB_NODE_DOCKER_NAME}:${TB_VERSION}"
|
|
|
|
|
ports:
|
|
|
|
|
- "8080"
|
|
|
|
|
logging:
|
|
|
|
|
driver: "json-file"
|
|
|
|
|
options:
|
|
|
|
|
max-size: "200m"
|
|
|
|
|
max-file: "30"
|
|
|
|
|
environment:
|
|
|
|
|
TB_SERVICE_ID: tb-rule-engine2
|
|
|
|
|
TB_SERVICE_TYPE: tb-rule-engine
|
2018-10-25 19:08:06 +03:00
|
|
|
env_file:
|
|
|
|
|
- tb-node.env
|
2017-07-26 16:16:07 +03:00
|
|
|
volumes:
|
2018-10-24 19:56:25 +03:00
|
|
|
- ./tb-node/conf:/config
|
|
|
|
|
- ./tb-node/log:/var/log/thingsboard
|
|
|
|
|
depends_on:
|
|
|
|
|
- kafka
|
2018-10-25 19:08:06 +03:00
|
|
|
- redis
|
2018-11-01 20:52:48 +02:00
|
|
|
- tb-js-executor
|
2018-10-24 19:56:25 +03:00
|
|
|
tb-mqtt-transport1:
|
|
|
|
|
restart: always
|
|
|
|
|
image: "${DOCKER_REPO}/${MQTT_TRANSPORT_DOCKER_NAME}:${TB_VERSION}"
|
2017-05-24 16:37:20 +03:00
|
|
|
ports:
|
2018-10-24 19:56:25 +03:00
|
|
|
- "1883"
|
2018-11-06 18:00:38 +02:00
|
|
|
environment:
|
2020-04-24 13:55:06 +03:00
|
|
|
TB_SERVICE_ID: tb-mqtt-transport1
|
2018-10-24 19:56:25 +03:00
|
|
|
env_file:
|
|
|
|
|
- tb-mqtt-transport.env
|
2018-11-06 18:00:38 +02:00
|
|
|
volumes:
|
|
|
|
|
- ./tb-transports/mqtt/conf:/config
|
|
|
|
|
- ./tb-transports/mqtt/log:/var/log/tb-mqtt-transport
|
2018-10-24 19:56:25 +03:00
|
|
|
depends_on:
|
|
|
|
|
- kafka
|
|
|
|
|
tb-mqtt-transport2:
|
|
|
|
|
restart: always
|
|
|
|
|
image: "${DOCKER_REPO}/${MQTT_TRANSPORT_DOCKER_NAME}:${TB_VERSION}"
|
2017-05-24 16:37:20 +03:00
|
|
|
ports:
|
2018-10-24 19:56:25 +03:00
|
|
|
- "1883"
|
2018-11-06 18:00:38 +02:00
|
|
|
environment:
|
2020-04-24 13:55:06 +03:00
|
|
|
TB_SERVICE_ID: tb-mqtt-transport2
|
2018-10-24 19:56:25 +03:00
|
|
|
env_file:
|
|
|
|
|
- tb-mqtt-transport.env
|
2018-11-06 18:00:38 +02:00
|
|
|
volumes:
|
|
|
|
|
- ./tb-transports/mqtt/conf:/config
|
|
|
|
|
- ./tb-transports/mqtt/log:/var/log/tb-mqtt-transport
|
2018-10-24 19:56:25 +03:00
|
|
|
depends_on:
|
|
|
|
|
- kafka
|
|
|
|
|
tb-http-transport1:
|
2016-12-01 11:44:35 +02:00
|
|
|
restart: always
|
2018-10-24 19:56:25 +03:00
|
|
|
image: "${DOCKER_REPO}/${HTTP_TRANSPORT_DOCKER_NAME}:${TB_VERSION}"
|
2017-05-31 12:48:35 +03:00
|
|
|
ports:
|
2018-10-24 19:56:25 +03:00
|
|
|
- "8081"
|
2018-11-06 18:00:38 +02:00
|
|
|
environment:
|
2020-04-24 13:55:06 +03:00
|
|
|
TB_SERVICE_ID: tb-http-transport1
|
2018-10-24 19:56:25 +03:00
|
|
|
env_file:
|
|
|
|
|
- tb-http-transport.env
|
2018-11-06 18:00:38 +02:00
|
|
|
volumes:
|
|
|
|
|
- ./tb-transports/http/conf:/config
|
|
|
|
|
- ./tb-transports/http/log:/var/log/tb-http-transport
|
2018-10-24 19:56:25 +03:00
|
|
|
depends_on:
|
|
|
|
|
- kafka
|
|
|
|
|
tb-http-transport2:
|
|
|
|
|
restart: always
|
|
|
|
|
image: "${DOCKER_REPO}/${HTTP_TRANSPORT_DOCKER_NAME}:${TB_VERSION}"
|
|
|
|
|
ports:
|
|
|
|
|
- "8081"
|
2018-11-06 18:00:38 +02:00
|
|
|
environment:
|
2020-04-24 13:55:06 +03:00
|
|
|
TB_SERVICE_ID: tb-http-transport2
|
2018-10-24 19:56:25 +03:00
|
|
|
env_file:
|
|
|
|
|
- tb-http-transport.env
|
2018-11-06 18:00:38 +02:00
|
|
|
volumes:
|
|
|
|
|
- ./tb-transports/http/conf:/config
|
|
|
|
|
- ./tb-transports/http/log:/var/log/tb-http-transport
|
2018-10-24 19:56:25 +03:00
|
|
|
depends_on:
|
|
|
|
|
- kafka
|
|
|
|
|
tb-coap-transport:
|
|
|
|
|
restart: always
|
|
|
|
|
image: "${DOCKER_REPO}/${COAP_TRANSPORT_DOCKER_NAME}:${TB_VERSION}"
|
|
|
|
|
ports:
|
|
|
|
|
- "5683:5683/udp"
|
2018-11-06 18:00:38 +02:00
|
|
|
environment:
|
2020-04-24 13:55:06 +03:00
|
|
|
TB_SERVICE_ID: tb-coap-transport
|
2018-10-24 19:56:25 +03:00
|
|
|
env_file:
|
|
|
|
|
- tb-coap-transport.env
|
2018-11-06 18:00:38 +02:00
|
|
|
volumes:
|
|
|
|
|
- ./tb-transports/coap/conf:/config
|
|
|
|
|
- ./tb-transports/coap/log:/var/log/tb-coap-transport
|
2018-10-24 19:56:25 +03:00
|
|
|
depends_on:
|
|
|
|
|
- kafka
|
|
|
|
|
tb-web-ui1:
|
|
|
|
|
restart: always
|
|
|
|
|
image: "${DOCKER_REPO}/${WEB_UI_DOCKER_NAME}:${TB_VERSION}"
|
|
|
|
|
ports:
|
|
|
|
|
- "8080"
|
|
|
|
|
env_file:
|
|
|
|
|
- tb-web-ui.env
|
|
|
|
|
tb-web-ui2:
|
|
|
|
|
restart: always
|
|
|
|
|
image: "${DOCKER_REPO}/${WEB_UI_DOCKER_NAME}:${TB_VERSION}"
|
|
|
|
|
ports:
|
|
|
|
|
- "8080"
|
|
|
|
|
env_file:
|
|
|
|
|
- tb-web-ui.env
|
2018-10-26 12:49:20 +03:00
|
|
|
haproxy:
|
2018-10-24 19:56:25 +03:00
|
|
|
restart: always
|
2018-10-31 19:23:00 +02:00
|
|
|
container_name: "${LOAD_BALANCER_NAME}"
|
2018-10-26 17:19:57 +03:00
|
|
|
image: xalauc/haproxy-certbot:1.7.9
|
2017-05-31 12:48:35 +03:00
|
|
|
volumes:
|
2018-10-24 19:56:25 +03:00
|
|
|
- ./haproxy/config:/config
|
|
|
|
|
- ./haproxy/letsencrypt:/etc/letsencrypt
|
|
|
|
|
- ./haproxy/certs.d:/usr/local/etc/haproxy/certs.d
|
|
|
|
|
ports:
|
|
|
|
|
- "80:80"
|
|
|
|
|
- "443:443"
|
|
|
|
|
- "1883:1883"
|
|
|
|
|
- "9999:9999"
|
|
|
|
|
cap_add:
|
|
|
|
|
- NET_ADMIN
|
|
|
|
|
environment:
|
|
|
|
|
HTTP_PORT: 80
|
|
|
|
|
HTTPS_PORT: 443
|
|
|
|
|
MQTT_PORT: 1883
|
2018-10-25 12:34:02 +03:00
|
|
|
FORCE_HTTPS_REDIRECT: "false"
|
2018-10-24 19:56:25 +03:00
|
|
|
links:
|
2020-04-24 14:54:25 +03:00
|
|
|
- tb-core1
|
|
|
|
|
- tb-core2
|
2018-10-24 19:56:25 +03:00
|
|
|
- tb-web-ui1
|
|
|
|
|
- tb-web-ui2
|
|
|
|
|
- tb-mqtt-transport1
|
|
|
|
|
- tb-mqtt-transport2
|
|
|
|
|
- tb-http-transport1
|
|
|
|
|
- tb-http-transport2
|