Back to Prisma

stop

apps/docs/content/docs/cli/dev/stop.mdx

latest861 B
Original Source

The prisma dev stop command stops one or more local Prisma Postgres databases.

Usage

bash
prisma dev stop [options] <name>

Arguments

ArgumentDescription
<name>Name(s) or glob pattern(s) of the server(s) to stop

Options

OptionDescriptionDefault
--debugEnable debug loggingfalse

Examples

Stop a specific database

npm
npx prisma dev stop mydb

Stop multiple databases with a pattern

Stop all databases starting with mydb:

npm
npx prisma dev stop mydb*

:::note

The stop command is interactive and includes safety prompts to prevent accidental operations.

:::