#!/bin/bash
#
# Open a database shell

set -Eeuo pipefail

cd "$(dirname "$0")/.."

docker compose run --rm pg-dev psql "${@-}"
