You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
317 B
Bash
11 lines
317 B
Bash
#!/bin/bash
|
|
docker run -it --rm \
|
|
--name alloc-test-postgres \
|
|
-e POSTGRES_PASSWORD=alloc-test \
|
|
-e POSTGRES_USER=alloc-test \
|
|
-e PGDATA=/var/lib/postgresql/data \
|
|
-v /home/pagan/projects/digital/2pm.tech/java-orm-bench/docker/pgdata-14-alpine/:/var/lib/postgresql/data \
|
|
-p 6543:5432 \
|
|
postgres:14-alpine
|
|
|