From 4aae51a561e3ac66b588e7bbd03136513076ada1 Mon Sep 17 00:00:00 2001 From: xiao Date: Sun, 22 Dec 2024 09:33:28 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E6=9B=B4=E6=96=B0=20MySQL=20=E5=AE=89?= =?UTF-8?q?=E8=A3=85=E8=84=9A=E6=9C=AC=E7=89=88=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将 MySQL 安装脚本从版本 3 更新到版本 4,以确保使用最新的稳定版本。 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c70ccef..7e59211 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,7 +29,7 @@ RUN curl -sSO https://download.bt.cn/install/install_panel.sh \ && sh /lnmp/nginx.sh install 1.27 \ && curl -o /lnmp/php.sh https://download.bt.cn/install/3/php.sh \ && sh /lnmp/php.sh install 8.3 \ - && curl -o /lnmp/mysql.sh https://download.bt.cn/install/3/mysql.sh \ + && curl -o /lnmp/mysql.sh https://download.bt.cn/install/4/mysql.sh \ && sh /lnmp/mysql.sh install 8.0 \ && sh /lnmp/phpmyadmin.sh install 5.2 \ && rm -rf /lnmp \