Pricing Try it now
Community Edition
Getting Started Documentation Guides
Architecture API FAQ
On this page

SENTIENT v3.9.x upgrade instructions for Docker

Upgrading SENTIENT to 3.9.1

Doc info icon

NOTE:
These upgrade steps are applicable for SENTIENT 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 sentient/tb-postgres image require migration to the new deployment structure prior to upgrading. Please perform the migration to the new deployment structure first.

SENTIENT service upgrade

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

  2. Execute the following commands:

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

Upgrading SENTIENT to 3.9.0

Doc info icon

NOTE:
These upgrade steps are applicable for SENTIENT 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 sentient/tb-postgres image require migration to the new deployment structure prior to upgrading. Please perform the migration to the new deployment structure first.

SENTIENT service upgrade

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

  2. Execute the following commands:

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