Files
langgraphjs/int-test-deps-docker-compose.yml
T
Lucas Hänke de Cansino ff0a79123e feat(checkpoint-postgres): Postgres checkpointer (#471)
Co-authored-by: jacoblee93 <jacoblee93@gmail.com>
2024-10-08 09:34:50 -07:00

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"