Skip to content

Latest commit

 

History

History

postgresql

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

quickly get ourselves a postgresql

how to get inside docker

docker exec -it basic-postgres /bin/sh

how to connect over client to it

export PGPASSWORD=1234
psql --username postgres -h localhost

create DB

go into psql then do

CREATE DATABASE mydb;