Laradock の接続は psql のバージョンが 12 だとプロトコルエラーとなった。
$ psql -h localhost -U default -l
psql: error: could not connect to server: FATAL: unsupported frontend protocol 1234.5679: server supports 2.0 to 3.0
Macにインストールした psql のバージョンを変更する。
$ which psql
/usr/local/opt/libpq/bin/psql
$brew search postgresql
...
$ brew install postgresql@11
$ alias psql='/usr/local/opt/postgresql@11/bin/psql'