* wait I forgot to comit locally * cp the entire core directory and then rm the .git subdir
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
|