Having issue with Docker. #7075
Replies: 3 comments
-
Updating Instructions (docker): # Linux command to Remove all existing images
docker images -a | grep "librechat" | awk '{print $3}' | xargs docker rmi
# Windows Powershell
docker images -a | findstr "librechat" | ForEach-Object { docker rmi $_.Split()[2] } Then follow the directions here: https://www.librechat.ai/docs/local/docker#update-librechat |
Beta Was this translation helpful? Give feedback.
-
Will I be able to upload file after using docker compose up -d? This is what I want to achieve |
Beta Was this translation helpful? Give feedback.
-
When I did composer down. It's not able to connect. How do I turn on the docker and be able to do file upload at the same time? Please assist |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I ran
docker compose up -d
to update the rag API but since then I can't run my localhost again because they both share the same port. How do I work around this?Beta Was this translation helpful? Give feedback.
All reactions