mirror of
https://github.com/langchain-ai/langgraph.git
synced 2026-08-20 14:42:28 +02:00
* checkpoint-postgres: new library for postgres checkpointer implementation --------- Co-authored-by: Nuno Campos <nuno@langchain.dev>
16 lines
345 B
YAML
16 lines
345 B
YAML
services:
|
|
postgres-test:
|
|
image: postgres:16
|
|
ports:
|
|
- "5432:5432"
|
|
environment:
|
|
POSTGRES_DB: postgres
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_PASSWORD: postgres
|
|
healthcheck:
|
|
test: pg_isready -U postgres
|
|
start_period: 10s
|
|
timeout: 1s
|
|
retries: 5
|
|
interval: 60s
|
|
start_interval: 1s |