mirror of
https://github.com/cpacker/MemGPT.git
synced 2025-06-03 04:30:22 +00:00

Co-authored-by: Charles Packer <packercharles@gmail.com> Co-authored-by: Shubham Naik <shubham.naik10@gmail.com> Co-authored-by: Shubham Naik <shub@memgpt.ai>
11 lines
251 B
Bash
Executable File
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
|