Answers for "run postgres container"

CSS
2

docker run postgres locally

$ docker run -d --name my_postgres -v my_dbdata:/var/lib/postgresql/data -p 54320:5432 postgres:11
Posted by: Guest on March-18-2020
0

postgres container psql

psql -h localhost -p 5432
Posted by: Guest on April-20-2021

Code answers related to "run postgres container"

Browse Popular Code Answers by Language