产品定价 立即试用
社区版
入门 文档 指南
架构 API 常见问题
目录

ThingsBoard CE v3.9.x Docker升级说明

Upgrading ThingsBoard CE to 3.9.1

文档信息图标

NOTE:
These upgrade steps are applicable for ThingsBoard version 3.9. In order to upgrade to 3.9.1 you need to upgrade to 3.9 first.

文档警告图标

Legacy installations based on the thingsboard/tb-postgres image require migration to the new deployment structure prior to upgrading. Please perform the migration to the new deployment structure first.

ThingsBoard CE service upgrade

  1. docker-compose.ymlthingsboard/tb-node的版本改为3.9.1

  2. 执行以下命令:

1
2
3
4
docker pull thingsboard/tb-node:3.9.1
docker compose stop thingsboard-ce
docker compose run --rm -e UPGRADE_TB=true thingsboard-ce 
docker compose up -d

Upgrading ThingsBoard CE to 3.9.0

文档信息图标

NOTE:
These upgrade steps are applicable for ThingsBoard version 3.8.1. In order to upgrade to 3.9 you need to upgrade to 3.8.1 first.

文档警告图标

Legacy installations based on the thingsboard/tb-postgres image require migration to the new deployment structure prior to upgrading. Please perform the migration to the new deployment structure first.

ThingsBoard CE service upgrade

  1. Change the version of the thingsboard/tb-node in the docker-compose.yml file to the 3.9.0.

  2. Execute the following commands:

1
2
3
4
  docker pull thingsboard/tb-node:3.9.0
  docker compose stop thingsboard-ce
  docker compose run --rm -e UPGRADE_TB=true -e FROM_VERSION="3.8.1" thingsboard-ce
  docker compose up -d