Upgrade and Uninstall
Upgrade and remove DataBuff on Docker.
Upgrade
On an existing deployment, use the upgrade command. Do not re-run install.sh — a fresh install wipes telemetry data under data/.
Platform · online
When your machine can reach the CDN, upgrade to the latest release in one command:
curl -fsSL https://databuff.ai/databuff/ai-apm-update.sh | bashPlatform · offline
When the CDN is unreachable, download the target offline bundle, extract it, and run:
tar -zxvf databuff-ai-apm-offline-<version>-<arch>.tar.gz
cd databuff-ai-apm-offline-<version>-<arch>
sudo ./update.shSee Offline Installation for download URLs.
Demo · online
If you installed the demo app, run on a connected machine:
curl -fsSL https://databuff.ai/databuff/ai-apm-demo-update.sh | bashDemo · offline
From the extracted offline bundle directory (stops the old demo, then replaces it):
sudo ./install_demo.shUninstall
Platform
cd /opt/databuff-ai-apm
./stop.sh
cd ..
sudo rm -rf /opt/databuff-ai-apmBack up data/ first if you need to keep telemetry data.
Demo
The demo is installed separately from the platform. Removing it does not delete the platform or telemetry under data/.
cd /opt/databuff-ai-apm-demo
./stop.sh
cd ..
sudo rm -rf /opt/databuff-ai-apm-demoIf you set a custom path via APM_INSTALL_DIR at install time, use that directory instead of /opt/databuff-ai-apm-demo.