Update to rc version? #3035
wverdi
started this conversation in
Help Wanted
Replies: 1 comment 3 replies
-
you can use the docker override file to specifically change the image being used without creating potential merge conflicts when updating in the future: https://www.librechat.ai/docs/configuration/docker_override Also FYI, you will still see v0.7.2 with latest release candidate version. I will change that in the future. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Noob question, but i`m new on this haha
Ive been trying to update from 0.7.2 and i wasnt able to do so
ive tried every tutorial ive found on the site to get 0.7.3rc2 running, edited every .yml i found before coming here
is there any other tutorial to do it?
this my default deploy-compose.yml file, i dont know if i got it right but i was suppose to change the "image" line with the tagged version right?
version: "3.8"
services:
api:
# build:
# context: .
# dockerfile: Dockerfile.multi
# target: api-build
image: ghcr.io/danny-avila/librechat-dev-api:latest
container_name: LibreChat-API
ports:
- 3080:3080
depends_on:
- mongodb
- rag_api
restart: always
extra_hosts:
- "host.docker.internal:host-gateway"
env_file:
- .env
environment:
- HOST=0.0.0.0
- NODE_ENV=production
- MONGO_URI=mongodb://mongodb:27017/LibreChat
- MEILI_HOST=http://meilisearch:7700
- RAG_PORT=${RAG_PORT:-8000}
- RAG_API_URL=http://rag_api:${RAG_PORT:-8000}
Beta Was this translation helpful? Give feedback.
All reactions