Skip to content
Stand with Ukraine flag

ThingsBoard Edge PE Docker 4.0.x Upgrade Instructions

Upgrading Edge PE to 4.0.1

Backup before upgrading

Go to your docker-compose.yml directory and stop the container:

docker compose stop

Create a backup copy of the database volume:

docker run --rm -v tb-edge-postgres-data:/source -v tb-edge-postgres-data-backup:/backup busybox sh -c "cp -a /source/. /backup"

Update the image version

Update the thingsboard/tb-edge-pe image tag in docker-compose.yml to 4.0.1EDGEPE:

sed -i 's|thingsboard/tb-edge-pe:3.9.1EDGEPE|thingsboard/tb-edge-pe:4.0.1EDGEPE|' docker-compose.yml

Run the upgrade script:

docker compose run mytbedge upgrade-tb-edge.sh

Start the container

docker compose up -d && docker compose logs -f mytbedge