diff --git a/docs/index.md b/docs/index.md index c60443debb..86dd8d6d64 100644 --- a/docs/index.md +++ b/docs/index.md @@ -6,7 +6,7 @@ weight: -10

- +

LibreChat

diff --git a/docs/install/configuration/docker_override.md b/docs/install/configuration/docker_override.md index ac29256e8e..e9391c9162 100644 --- a/docs/install/configuration/docker_override.md +++ b/docs/install/configuration/docker_override.md @@ -272,12 +272,10 @@ use LibreChat ``` Now we'll create the actual credentials to be used by our Mongo connection string, which will be limited to read/write access of the "LibreChat" database. As before, replace the example with your desired credentials: -```bash -db.createUser({ user: 'user', pwd: 'userpasswd', roles: [ { role: "readWrite", db: "LibreChat" } ] }); -``` -You should see an "ok" output again: -> { ok: 1 } +`db.createUser({ user: 'user', pwd: 'userpasswd', roles: [ { role: "readWrite", db: "LibreChat" } ] });` + +You should see an "ok" output again. You can verify the user creation with the `show users` command.