Stand with Ukraine flag
Pricing Try it now
Community Edition
Getting Started Documentation Devices Library Guides
Architecture API FAQ
On this page

ThingsBoard CE v3.9.x upgrade instructions for Docker

Upgrading ThingsBoard CE to 3.9.1

Doc info icon

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.

doc warn icon

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.1.

  2. Execute the following commands:

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

Doc info icon

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.

doc warn icon

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