Skip to content

Commit

Permalink
fix(dockercompose): Fix db manager connection (#8377)
Browse files Browse the repository at this point in the history
* add db host

* remove unused variable
  • Loading branch information
aarushik93 authored Oct 18, 2024
1 parent 26b1bca commit 6f3828f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
5 changes: 0 additions & 5 deletions autogpt_platform/backend/backend/util/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
1 change: 1 addition & 0 deletions autogpt_platform/docker-compose.platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 6f3828f

Please sign in to comment.