4deafc5b1e
🌿 Preview Python SDK / changed-files (push) Has been cancelled
🌿 Preview Python SDK / preview-python-sdk (push) Has been cancelled
🌿 Preview TypeScript SDK / changed-files (push) Has been cancelled
🌿 Preview TypeScript SDK / preview-typescript-sdk (push) Has been cancelled
Sync Code / notify (push) Has been cancelled
Test Package Installation / test-install (3.13) (push) Has been cancelled
Test Package Installation / test-install (3.12) (push) Has been cancelled
Notify Submodule Repos / notify (push) Has been cancelled
Run Docker integration tests / test (push) Has been cancelled
🌿 Publish Docs / run (push) Has been cancelled
Test Package Installation / test-install (3.11) (push) Has been cancelled
33 lines
796 B
YAML
33 lines
796 B
YAML
version: '3.7'
|
|
services:
|
|
redis:
|
|
image: redis:alpine
|
|
container_name: redis
|
|
healthcheck:
|
|
test: ['CMD-SHELL', 'redis-cli ping | grep PONG']
|
|
interval: 1s
|
|
timeout: 3s
|
|
retries: 5
|
|
ports:
|
|
- '6379:6379'
|
|
volumes:
|
|
- ./data/redis:/data
|
|
command: redis-server --appendonly yes
|
|
postgres:
|
|
image: ankane/pgvector
|
|
container_name: postgres
|
|
healthcheck:
|
|
test: ['CMD-SHELL', 'pg_isready -U postgres']
|
|
interval: 1s
|
|
timeout: 3s
|
|
retries: 5
|
|
ports:
|
|
- '5432:5432'
|
|
environment:
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_PASSWORD: postgres
|
|
POSTGRES_DB: letta
|
|
volumes:
|
|
- ./data/postgres:/var/lib/postgresql/data
|
|
- ./scripts/postgres-db-init/init.sql:/docker-entrypoint-initdb.d/init.sql
|