Migrating CARTO Self-Hosted installation to an external database
Prerequisites
How to perform the migration to an external database
Step 1: Dump the Container Database
docker-compose exec workspace-postgres pg_dump -U postgres -d workspace > dump.sqlStep 2: Create Workspace Admin User in External Database
CREATE USER workspace_admin with encrypted password '<password>';Step 3: Create Database in External Database
Step 4: Restore the Dump
Last updated
Was this helpful?
