6950b06e85
- bin/mysql-import requires a argument: the filename of the sql dump in ./db folder
10 lines
233 B
Bash
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
|