From 2a2ae74c71f0e05f534d13d3eef72f1c3ec204c6 Mon Sep 17 00:00:00 2001 From: Stefan Pejcic Date: Thu, 9 May 2024 11:15:25 +0200 Subject: [PATCH] Update INSTALL.sh --- INSTALL.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/INSTALL.sh b/INSTALL.sh index c95c4516..c2e10574 100644 --- a/INSTALL.sh +++ b/INSTALL.sh @@ -643,12 +643,12 @@ run_mysql_docker_container() { MYSQL_ROOT_PASSWORD=$(openssl rand -base64 -hex 9) if [ "$REPAIR" = true ]; then + echo "RAPAIR: Removing existing mysql database." docker stop openpanel_mysql docker rm openpanel_mysql - docker volume rm openpanel_mysql + docker volume rm openpanel_mysql_data fi - # run the container docker run -d -p 3306:3306 --name openpanel_mysql \ -e MYSQL_ROOT_PASSWORD="$MYSQL_ROOT_PASSWORD" \