Thingsboard

Open-source IoT Platform - Device management, data collection, processing and visualization.

Directory Structure

    • .env
    • docker-compose.yml

docker-compose.yml

version: '3.0'
services:
  mytb:
    restart: always
    image: "thingsboard/tb-postgres"
    ports:
      - "8080:9090"
      - "1883:1883"
      - "7070:7070"
      - "5683-5688:5683-5688/udp"
    environment:
      TB_QUEUE_TYPE: in-memory
    volumes:
      - ~/.mytb-data:/data
      - ~/.mytb-logs:/var/log/thingsboard

Resources

Website: https://thingsboard.io/

GitHub: https://github.com/thingsboard/thingsboard

Docker Hub: https://hub.docker.com/r/thingsboard/tb-postgres

Configuration: https://thingsboard.io/docs/user-guide/install/docker/