If I use image: ghcr.io/danny-avila/librechat:latest I get the following error from the LibreChat container:
```2025-02-23 02:19:56 error: An error occurred while fixing Token indexes: Operation tokens.indexes() buffering timed out after 10000ms
2025-02-23 02:20:18 error: There was an uncaught error: Could not connect to any servers in your MongoDB Atlas cluster. One common reason is that you're trying to access the database from an IP that isn't whitelisted. Make sure your current IP address is on your Atlas cluster's IP whitelist: https://www.mongodb.com/docs/atlas/security-whitelist/
[email protected] backend
cross-env NODE_ENV=production node api/server/index.js```
(I have confirmed network access is open on my mongo atlas instance)
If I use image: ghcr.io/danny-avila/librechat-dev:latest I get the following error:
throw new ERR_INVALID_ARG_TYPE(
^
TypeError [ERR_INVALID_ARG_TYPE]: The first argument must be of type string or an instance of Buffer, ArrayBuffer, or Array or an Array-like Object. Received undefined
at Function.from (node:buffer:320:9)
at Object.<anonymous> (/app/api/server/utils/crypto.js:4:20)
at Module._compile (node:internal/modules/cjs/loader:1469:14)
at Module._extensions..js (node:internal/modules/cjs/loader:1548:10)
at Module.load (node:internal/modules/cjs/loader:1288:32)
at Module._load (node:internal/modules/cjs/loader:1104:12)
at Module.require (node:internal/modules/cjs/loader:1311:19)
at require (node:internal/modules/helpers:179:18)
at Object.<anonymous> (/app/api/server/utils/index.js:6:21)
at Module._compile (node:internal/modules/cjs/loader:1469:14) {
code: 'ERR_INVALID_ARG_TYPE'
}```