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

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

Upgrading ThingsBoard PE to 3.9.1

文档信息图标

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

文档警告图标

Legacy installations based on the thingsboard/tb-pe image require migration to the new deployment structure prior to upgrading. Please refer to the migration guide to complete this process first.

ThingsBoard PE service upgrade

1.将 docker-compose.yml 文件中 thingsboard/tb-pe-nodethingsboard/tb-pe-web-report 的版本改为3.9.1PE

2.执行以下命令:

1
2
3
4
5
docker pull thingsboard/tb-pe-node:3.9.1PE
docker pull thingsboard/tb-pe-web-report:3.9.1PE
docker compose stop thingsboard-pe
docker compose run --rm -e UPGRADE_TB=true thingsboard-pe
docker compose up -d

Upgrading ThingsBoard PE to 3.9.0

文档信息图标

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

文档警告图标

Legacy installations based on the thingsboard/tb-pe image require migration to the new deployment structure prior to upgrading. Please refer to the migration guide to complete this process first.

ThingsBoard PE service upgrade

  1. Change the version of the thingsboard/tb-pe-node and thingsboard/tb-pe-web-report in the docker-compose.yml file to the 3.9.0PE.

  2. Execute the following commands:

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