Skip to content

Commit

Permalink
Fixes for Azure
Browse files Browse the repository at this point in the history
  • Loading branch information
dividor committed Apr 16, 2024
1 parent 8e1f333 commit 44847e1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
6 changes: 6 additions & 0 deletions docker-compose-azure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ services:
restart: always
user: "${UID}:${GID}"
command: mongod --noauth
volumes:
- ${WEBAPP_STORAGE_HOME}/data/mongodb:/data/db
meilisearch:
image: "dkdsprototypesreg01.azurecr.io/containergroup:meilisearch"
#platform: "linux/amd64"
Expand All @@ -33,6 +35,8 @@ services:
environment:
MEILI_HOST: http://meilisearch:7700
MEILI_NO_ANALYTICS: true
volumes:
- ${WEBAPP_STORAGE_HOME}/data/meili_data:/meili_data
vectordb:
image: "dkdsprototypesreg01.azurecr.io/containergroup:vectordb"
platform: "linux/amd64"
Expand All @@ -41,6 +45,8 @@ services:
POSTGRES_USER: myuser
POSTGRES_PASSWORD: mypassword
restart: always
volumes:
- ${WEBAPP_STORAGE_HOME}/data/vectordb:/var/lib/postgresql/data
rag_api:
image: "dkdsprototypesreg01.azurecr.io/containergroup:rag_api"
platform: "linux/amd64"
Expand Down
2 changes: 2 additions & 0 deletions docker-compose-build-azure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,8 @@ services:
build:
context: .
dockerfile: ./actions/Dockerfile
args:
DATA_DB_CONN_STRING: ${DATA_DB_CONN_STRING}
ports:
# API
- 3001:8080
Expand Down

0 comments on commit 44847e1

Please sign in to comment.