File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,8 @@ case "$1" in
2626 fi
2727
2828 logMsg " Starting MySQL backup..."
29- dockerExec mysqldump --opt --single-transaction --events --all-databases --routines --comments | bzip2 > " ${BACKUP_DIR} /${BACKUP_MYSQL_FILE} "
29+ source " $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd ) /../etc/environment.yml"
30+ dockerExec mysqldump -h mysql -u root -p" ${MYSQL_ROOT_PASSWORD} " --opt --single-transaction --events --all-databases --routines --comments | bzip2 > " ${BACKUP_DIR} /${BACKUP_MYSQL_FILE} "
3031 logMsg " Finished"
3132 else
3233 echo " * Skipping mysql backup, no such container"
Original file line number Diff line number Diff line change 1212# General
1313WEB_DOCUMENT_ROOT=/app/
1414WEB_DOCUMENT_INDEX=index.php
15- CLI_SCRIPT=php /app/index.php
15+ CLI_SCRIPT=" php /app/index.php"
1616
1717# ######################################
1818# SSH settings
You can’t perform that action at this time.
0 commit comments