Files
Gulácsi András 6950b06e85 fix: Non-working bash scripts for mysql dump, db import, and showing recent errors
- bin/mysql-import requires a argument: the filename of the sql dump in ./db folder
2023-11-03 22:43:12 +01:00

10 lines
233 B
Bash

#!/bin/bash
set -a
source .env
echo "==============================================="
echo "MySQL error log:"
echo "==============================================="
docker logs "${APP_NAME}"-db --tail "${TAIL_COUNT}" --details
exit