Three PocketBase operations that used to need the instance’s own admin panel
now live on the platform surface — the portal and the pbc CLI:
Restore at creation. pbc pocketbase create --backup backup.zip
provisions an instance with a backup ZIP already restored into it — schema,
records, uploaded files, and superusers arrive as they were:
$ pbc pocketbase create restored-db --backup backup.zip
Admin login: preserved from backup; credentials are not available to PocketBase Cloud.
Log in with the same superuser the backup was taken with. The backup rides
a presigned upload (max 150 MB), and because the superusers are preserved,
--backup cannot be combined with --admin-email / --admin-password.
The portal’s create form has the same thing: switch Admin Credentials &
Mode to Restore Backup and drop the file — the name is suggested from
it.
Runtime flags. Dev mode, the hooks pool (1–100), and the query timeout
(1–3600 s) are settable at creation and editable afterwards. A running
instance restarts when they change:
pbc pocketbase create my-app-db --dev true --hooks-pool 20
pbc pocketbase config get --name my-app-db
pbc pocketbase config set --name my-app-db --query-timeout 60
Managed superuser. The platform-owned superuser can be rotated without
the old password, and without touching the other superusers:
pbc pocketbase superuser sync --email [email protected] --password 'new-password-here' --name my-app-db
The instance detail page carries both under Advanced Configuration —
Admin Credentials and Runtime Flags. See Deploying
PocketBase and Managing Your
Instance.