Update docker-compose.yaml (#3582)

The following error gets returned when trying to launch
langchain-server:

ERROR: The Compose file
'/opt/homebrew/lib/python3.11/site-packages/langchain/docker-compose.yaml'
is invalid because:
services.langchain-db.expose is invalid: should be of the format
'PORT[/PROTOCOL]'

Solution:
Change line 28 from - 5432:5432 to - 5432
fix_agent_callbacks
Ilyes Bouchada 1 year ago committed by GitHub
parent e1a4fc55e6
commit c5451f4298
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -26,4 +26,4 @@ services:
- POSTGRES_USER=postgres
- POSTGRES_DB=postgres
expose:
- 5432:5432
- 5432

Loading…
Cancel
Save