mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-01-09 15:17:59 -05:00
fix(dockercompose): Fix db manager connection (#8377)
* add db host * remove unused variable
This commit is contained in:
@@ -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",
|
||||
|
||||
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user