Skip to content

Commit 2d3f7c6

Browse files
committed
minor fix
1 parent c0c30f0 commit 2d3f7c6

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

self-hosting/govern/reset-password.mdx

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,19 @@ title: Reset password
33
description: Users can reset their password through the terminal of the Plane application. You need to login to backend docker container and run the below command for resetting a user's password.
44
---
55
1. Get the container id for **plane-api**.
6-
```
7-
docker ps
8-
```
6+
```bash
7+
docker ps
8+
```
99

1010
2. Log in to the container.
11-
```
12-
docker exec -it <container_id> /bin/sh
13-
```
11+
```bash
12+
docker exec -it <container_id> /bin/sh
13+
```
1414

1515
3. Run the reset password command.
16-
```
17-
python manage.py reset_password <email>
18-
```
16+
```bash
17+
python manage.py reset_password <email>
18+
```
1919
<Tip>
2020
The email should be of an already existing user on the Plane application. If the email is not attached to any user the command will throw an error.
2121
</Tip>

0 commit comments

Comments
 (0)