Account & Password
Changing your password
You can change your login password at any time from the Settings page.
- Open the Settings page from the sidebar.
- Scroll to the Change Password section.
- Enter your current password, then your new password twice to confirm.
- Click Change password.
If your current password is incorrect, an error message will appear and your password will not be changed. On success, the form clears and shows a confirmation.
Admin password reset (Docker)
If a user forgets their password and cannot log in, an administrator with access to the Docker host can reset it directly from the container — no web UI login required.
docker exec <container-name> node dist/apps/api/src/scripts/reset-password.js \
--email user@example.com \
--password newpassword
To be prompted for the password interactively (input hidden):
docker exec -it <container-name> node dist/apps/api/src/scripts/reset-password.js \
--email user@example.com
Replace <container-name> with the name of your API container (e.g. litara-api-1). After running the command, the user can log in with the new password immediately.