mirror of
https://github.com/langchain-ai/langgraphjs.git
synced 2026-07-21 16:45:24 -04:00
42ced3a11d
Co-authored-by: Tat Dat Duong <david@duong.cz>
19 lines
545 B
YAML
19 lines
545 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
postgres:
|
|
image: pgvector/pgvector:pg16
|
|
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"
|