You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
281 B
9 lines
281 B
docker rm -f dev_postgres
|
|
docker run -d \
|
|
-v `pwd`/_docker_mnt/_postgres_data:/var/lib/postgresql/data \
|
|
-e POSTGRES_USER=testuser \
|
|
-e POSTGRES_PASSWORD=testpassword \
|
|
-e POSTGRES_DB=testdb \
|
|
--name dev_postgres \
|
|
-p 127.0.0.1:5432:5432 \
|
|
postgres:14
|