Docker command is out of date
The docker command is out of date.
It should be:
# To hold the output
mkdir -p artifacts
# To run the command
docker run --rm \
--name postgres-checkup \
--env PGPASSWORD=foo \
--volume `pwd`/artifacts:/checkup/./artifacts \
postgresai/postgres-checkup:latest \
./checkup \
--hostname db.example.com \
--port 5432 \
--username rootuser \
--dbname somedb \
--project c \
--mode "run" \
--epoch "$(date +'%Y%m%d')001"
Is that expected?