Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -240,3 +240,9 @@ Note: If user is using `docker compose` to run the services the following comman
```bash
docker compose run --entrypoint sh <Service_name>
```

Migrations with Docker Compose can also be handled with a single command.

```bash
docker compose run --entrypoint "sh -c 'pnpx prisma migrate deploy'" <Service_name>
```