Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
docker exec -it postgres-demo bash
su - postgres
psql postgres
CREATE USER rango WITH password 'rango';
ALTER USER rango WITH SUPERUSER;
CREATE DATABASE rangob;
\q