Upgrade to Checkpoint Version v1.9.2
Checkpoint versions are milestone releases that ensure your Appsmith instance applies necessary database schema updates, optimizations, and compatibility fixes. If your current Appsmith version is older than v1.9.2
, upgrading to this checkpoint version is mandatory before moving to later releases. This page provides step-by-step instructions to upgrade your self-hosted Appsmith instance to checkpoint version v1.9.2
.
Prerequisites
Before upgrading, ensure the following:
- At least 2 GB of free storage for backup and update tasks.
- Upgrade your embedded or external MongoDB server to v5.0 or later. For more information, see the list of compliant platforms and follow the steps available on MongoDB official documentation to Upgrade a Replica Set to 5.0.
- Create a backup of your Appsmith instance. For more information, see the Backup instance guide.
Docker
Follow these steps to upgrade your Appsmith instance to checkpoint version v1.9.2
. These instructions are applicable to platforms using Docker, including Docker standalone, AWS AMI, or DigitalOcean.
-
Access your Appsmith installation directory and modify the
docker-compose.yml
file:- For Community Edition, set the image to:
services:
appsmith:
image: index.docker.io/appsmith/appsmith-ce:v1.9.2
container_name: appsmith - For Commercial Edition, set the image to:
services:
appsmith:
image: index.docker.io/appsmith/appsmith-ee:v1.9.2
container_name: appsmith
- For Community Edition, set the image to:
-
Save the changes and restart the instance with the following command:
docker-compose up -d
-
Allow the instance to start and apply the necessary schema changes automatically. After the schema updates are complete, revert the image in the
docker-compose.yml
file to point to the latest version:- For Community Edition, set the image to:
services:
appsmith:
image: index.docker.io/appsmith/appsmith-ce
container_name: appsmith - For Commercial Edition, set the image to:
services:
appsmith:
image: index.docker.io/appsmith/appsmith-ee
container_name: appsmith
- For Community Edition, set the image to:
-
Save the changes and restart the instance again to finalise the update:
docker-compose up -d
Troubleshooting
If you face issues during the upgrade, roll back to a previous version using the Restore instance guide.
For further queries, contact the Appsmith support team using the chat widget in the bottom-right corner of this page.