Skip to content

Upgrades

How to keep Feedbot up to date — from the dashboard, the CLI, or by re-running the installer.

There are three ways to upgrade. Pick whichever you’re closest to:

FromCommand
The dashboardSettings → Updates → “Update now”
The CLIfeedbot upgrade
The shellcurl -fsSL https://get.feedbot.dev | sh -s -- --upgrade

All three do the same thing: docker compose pull followed by docker compose up -d. Migrations run on the api container’s boot (alembic upgrade head); your data is preserved.

By default, the install + upgrade pipeline uses the latest tag. For reproducible deploys, pin to a specific version:

Terminal window
curl -fsSL https://get.feedbot.dev | sh -s -- --version=v0.2.0

The installed CLI then inherits that pin via .install-state.

If an upgrade goes sideways:

Terminal window
# Pin to the previous version and re-run the installer.
curl -fsSL https://get.feedbot.dev | sh -s -- --upgrade --version=v0.1.5

If the database migrated forward, you’ll need a backup taken before the upgrade — see Backups & restore.