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 f3be801 commit 7e13334
Showing 1 changed file with 9 additions and 13 deletions.
22 changes: 9 additions & 13 deletions docker-compose-azure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,14 @@ services:
- rag_api
restart: always
user: ""
#env_file:
# - .env
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:8000
- RAG_API_URL:http://rag_api:8000
HOST: 0.0.0.0
MONGO_URI: mongodb://mongodb:27017/LibreChat
MEILI_HOST: http://meilisearch:7700
RAG_PORT: 8000
RAG_API_URL: http://rag_api:8000
mongodb:
image: "dkdsprototypesreg01.azurecr.io/containergroup:mongodb"
platform: "linux/amd64"
Expand All @@ -34,8 +32,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
vectordb:
image: "dkdsprototypesreg01.azurecr.io/containergroup:vectordb"
platform: "linux/amd64"
Expand All @@ -48,13 +46,11 @@ services:
image: "dkdsprototypesreg01.azurecr.io/containergroup:rag_api"
platform: "linux/amd64"
environment:
- DB_HOST:vectordb
- RAG_PORT:8000
DB_HOST: vectordb
RAG_PORT: 8000
restart: always
depends_on:
- vectordb
env_file:
- .env
actions:
image: "dkdsprototypesreg01.azurecr.io/containergroup:actions"
platform: linux/amd64
Expand Down

0 comments on commit 7e13334

Please sign in to comment.