Files
letta-server/db/run_postgres.sh
Kian Jones b8e9a80d93 merge this (#4759)
* wait I forgot to comit locally

* cp the entire core directory and then rm the .git subdir
2025-09-17 15:47:40 -07:00

11 lines
251 B
Bash
Executable File

# build container
docker build -f db/Dockerfile.simple -t pg-test .
# run container
docker run -d --rm \
--name letta-db-test \
-p 8888:5432 \
-e POSTGRES_PASSWORD=password \
-v letta_db_test:/var/lib/postgresql/data \
pg-test:latest