Version Conflict: Docker Upgrade to 0.7.6 Downgrades to 0.7.5 and Causes Login Issues #5779
Replies: 2 comments 1 reply
-
Upon executing the commands: docker compose -f deploy-compose.yml -f docker-compose.override.yml pull
docker compose -f deploy-compose.yml -f docker-compose.override.yml up as documented at https://www.librechat.ai/docs/configuration/docker_override#deploy-composeyml, Docker fails to initiate. The error logs reveal:
This indicates a missing |
Beta Was this translation helpful? Give feedback.
-
Follow these instructions to update LibreChat with docker (or corresponding commands for deploy-compose.yml): https://www.librechat.ai/docs/local/docker#update-librechat
Do you have the project cloned down? I use these commands almost daily (via
This is a symptom of using localhost or insecure connection in an express.js app, you need HTTPS to prevent this. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
🐛 Version Conflict/Configuration Issue: Applying Unsecured HTTP Fix with
docker compose up -d
Downgrades to 0.7.5 and Causes Login IssuesEnvironment:
Problem Description:
I followed the official documentation (Fixing Unsecured HTTP Connections) to apply the unsecured HTTP fix using the
docker compose up -d
command. However, I encountered the following two issues, suspecting a version conflict or configuration problem during the fix application process:Issue 1: Using
docker compose up -d
command to apply the fix automatically downgrades to version 0.7.5docker compose up -d
command to apply the unsecured HTTP fix.backend:dev
branch. Myoverride.yml
configuration remained effective, and refreshing the page did not require re-login.[email protected] backend
cross-env NODE_ENV=development npx nodemon api/server/index.js
npm warn exec The following package was not found and will be installed: [email protected]
Issue 2: Deploying 0.7.6 version using
npm run start:deployed
requires re-login after refreshing the page (unrelated to Issue 1, for comparison)npm run start:deployed
command, which executes thedeploy-compose.yml
file for deployment, to ensure the current version is 0.7.6. (This step is not related to the unsecured HTTP fix, but used for comparison to observe login behavior in version 0.7.6)2025-02-10 10:42:52 [32minfo [39m: [32m[Optional] Redis not initialized. Note: Redis support is experimental. [39m
... (Omitted other log information) ...
2025-02-10 10:43:01 [32minfo [39m: [32mServer listening on all interfaces at port 3080. Use http://localhost:3080 to access it [39m
Screenshot:
(Please describe the screenshot content, e.g., Screenshot shows the login page after upgrade)
Expectations:
docker compose up -d
command to apply the unsecured HTTP fix should not downgrade the version and should maintain existing configurations and login status.Possible Causes (Speculation):
docker compose up -d
command for applying the unsecured HTTP fix might be pulling an incorrect image version or branch by default (e.g.,backend:dev
), causing the downgrade.backend:dev
branch) might have differences in login state management compared to version 0.7.6.Please help the development team investigate and resolve this issue. Thank you!
Beta Was this translation helpful? Give feedback.
All reactions