mirror of
https://github.com/langchain-ai/langgraphjs.git
synced 2026-07-24 20:55:55 -04:00
ff0a79123e
Co-authored-by: jacoblee93 <jacoblee93@gmail.com>
19 lines
538 B
YAML
19 lines
538 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
postgres:
|
|
image: postgres:latest
|
|
container_name: langgraphjs-postgres-test
|
|
volumes:
|
|
- ./tmp/integration_tests/pgvector:/var/lib/postgresql/data
|
|
environment:
|
|
POSTGRES_USER: user
|
|
POSTGRES_PASSWORD: password
|
|
POSTGRES_DB: testdb
|
|
# Enable logging of connections and disconnections
|
|
POSTGRES_LOG_CONNECTIONS: "on"
|
|
POSTGRES_LOG_DISCONNECTIONS: "on"
|
|
POSTGRES_LOG_MIN_MESSAGES: "info" # Logs messages of level INFO and above
|
|
ports:
|
|
- "5434:5432"
|