We could define common commands in module definitions.
Then you could do muss console psql (or muss console db or whatever you want to call it)
instead of muss run postgres psql or psql -h $dockerhost -p $exposedport -U $whatuserisit
If we used this instead of using psql directly then you wouldn't need to expose global ports and could avoid port conflicts that come from running too many projects.
We could define common commands in module definitions.
Then you could do
muss console psql(ormuss console dbor whatever you want to call it)instead of
muss run postgres psqlorpsql -h $dockerhost -p $exposedport -U $whatuserisitIf we used this instead of using
psqldirectly then you wouldn't need to expose global ports and could avoid port conflicts that come from running too many projects.