Files
langgraphjs/libs/checkpoint-postgres/docker-compose.yml
T
2025-07-30 14:08:37 +00:00

17 lines
466 B
YAML

version: "3.8"
services:
postgres:
image: pgvector/pgvector:pg17
container_name: langgraphjs-postgres-test
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"