You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: self-hosting/govern/reset-password.mdx
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,19 +3,19 @@ title: Reset password
3
3
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.
4
4
---
5
5
1. Get the container id for **plane-api**.
6
-
```
7
-
docker ps
8
-
```
6
+
```bash
7
+
docker ps
8
+
```
9
9
10
10
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
+
```
14
14
15
15
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
+
```
19
19
<Tip>
20
20
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.
0 commit comments