fix(dockercompose): Fix db manager connection (#8377)

* add db host

* remove unused variable
This commit is contained in:
Aarushi
2024-10-18 13:49:56 +01:00
committed by GitHub
parent 26b1bca033
commit 6f3828fc99
2 changed files with 1 additions and 5 deletions

View File

@@ -117,11 +117,6 @@ class Config(UpdateTrackingModel["Config"], BaseSettings):
description="The port for agent server daemon to run on",
)
database_api_host: str = Field(
default="0.0.0.0",
description="The host for database server API to run on",
)
database_api_port: int = Field(
default=8005,
description="The port for database server API to run on",

View File

@@ -103,6 +103,7 @@ services:
- ENABLE_AUTH=true
- PYRO_HOST=0.0.0.0
- AGENTSERVER_HOST=rest_server
- DATABASEMANAGER_HOST=0.0.0.0
ports:
- "8002:8000"
networks: