Updating Collabase
Navigate to your installation folder
Open a terminal on the server where Collabase is running and navigate to the folder containing your
docker-compose.yml.Pull the latest image
Database migrations
Collabase uses Prisma Migrations to manage database changes. Every schema change is versioned and applied in order.Automatic migration on boot
When the application starts, it checks whether any migrations are pending. If so:- Users see a Maintenance Required screen — they cannot log in during this time.
- You, as admin, click Apply System Update.
- The system streams the migration log to your browser in real time.
- Once complete, the system returns to
READYstate and users are allowed back in.
Migrations only add new tables or columns. They never delete existing data.
Backing up your data
Your data lives in three folders on the host that were created during installation. Back these up before every major update.| Folder | Contents |
|---|---|
./db_data | Raw Postgres database files |
./collabase_data | User uploads and file attachments |
./shared-home | Configuration and cache |
