https://www.postgresqltutorial.com/
http://jazstudios.blogspot.com/2010/06/postgresql-login-commands.html
docker run -d --name=postgres -e POSTGRES_USER=mark -e POSTGRES_PASSWORD=password postgres
docker exec -it postgres psql -U mark
\dt
\d table_name
CREATE TABLE mytable (
id SERIAL PRIMARY KEY
);