Quickly start Postgres DB
Use-case
You need to quickly spin postgres and you don't afraid to use docker.
Usage
; let psql = name: 'test-psql' // Name of the container port: 9999 // Host port user: 'test-user' // Database user password: 'test-pass' // Database password db: 'test-db' // Database name dump: `/dump.sql` // dump (optional); psql; // Pump **all** info into stdout psql; // Show "pretty" output psql;