Upgrade Your Self-Hosted QuFabric Installation

Check for Updates

The QuFabric Dashboard displays an update indicator at the bottom of the left navigation menu when a new version is available:

update-available

You can also check the current version programmatically via the API (requires authentication):

curl 'https://your-qufabric-domain/api/instance/version' \
  -H 'accept: application/json' \
  -H 'authorization: Bearer <your-access-token>'

Example response:

{
    "dashboard_available_version": "2.28.0",
    "management_available_version": "0.64.1",
    "management_current_version": "0.64.0",
    "management_update_available": true
}

Check Release Notes

Before upgrading, review the release notes for any breaking changes or migration steps:

Upgrade Steps

To upgrade QuFabric to the latest version:

  1. Run the backup steps described in the backup section.
  2. Review the release notes (see above) for any breaking changes.
  3. Pull the latest QuFabric docker images:
    docker compose pull management dashboard signal relay
    
  4. Restart the QuFabric containers with the new images:
    docker compose up -d --force-recreate management dashboard signal relay
    

Get In Touch

Feel free to ping us on Slack if you have any questions.