Skip to content

Commit

Permalink
Stoopid docker compose bug
Browse files Browse the repository at this point in the history
  • Loading branch information
dividor committed Apr 15, 2024
1 parent 9300319 commit f3be801
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ services:
extra_hosts:
- "host.docker.internal:host-gateway"
environment:
- HOST=0.0.0.0
- 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}
HOST: 0.0.0.0
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}
volumes:
- type: bind
source: ./.env
Expand All @@ -54,8 +54,8 @@ services:
restart: always
user: "${UID}:${GID}"
environment:
- MEILI_HOST=http://meilisearch:7700
- MEILI_NO_ANALYTICS=true
MEILI_HOST: http://meilisearch:7700
MEILI_NO_ANALYTICS: true
volumes:
- ./ui/recipes_assistant_chat/meili_data_v1.7:/meili_data
vectordb:
Expand All @@ -70,8 +70,8 @@ services:
rag_api:
image: ghcr.io/danny-avila/librechat-rag-api-dev-lite:latest
environment:
- DB_HOST=vectordb
- RAG_PORT=${RAG_PORT:-8000}
DB_HOST: vectordb
RAG_PORT: ${RAG_PORT:-8000}
restart: always
depends_on:
- vectordb
Expand Down

0 comments on commit f3be801

Please sign in to comment.