Skip to main content

Disable Automatic Updates

In Appsmith, the automatic updates are turned off by default. You may choose to schedule the automatic updates. This page provides steps to disable the scheduled automatic updates for your self-hosted instance.


Follow the below steps to switch off automatic updates:

  1. Go to the root directory of the Appsmith installation and run:

    docker-compose down
  2. Open the docker-compose.yml file and comment out the below code block:

    #auto_update:
    # image: containrrr/watchtower
    # volumes:
    # - /var/run/docker.sock:/var/run/docker.sock
    # # Update check interval in seconds.
    # command: --schedule "0 0 * ? * *" --label-enable --cleanup
    # restart: unless-stopped
    # depends_on:
    # - appsmith
    # environment:
    # - WATCHTOWER_LIFECYCLE_HOOKS=true
  3. Save the changes and restart the Appsmith instance with:

    docker-compose up -d --force-recreate
  4. Verify that the automatic update is turned off with:

    docker-compose ps

Troubleshooting

If you face issues, contact the support team using the chat widget at the bottom right of this page.

See also