From e84787c3f162612297468e9a568ead47e72760ee Mon Sep 17 00:00:00 2001 From: Olia Lisa Date: Sat, 10 Jan 2026 21:21:45 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E4=BF=AE=E6=94=B9=E5=9F=9F?= =?UTF-8?q?=E5=90=8D=E7=9A=84=E9=80=89=E9=A1=B9=E5=88=B0=E5=AE=89=E8=A3=85?= =?UTF-8?q?=E8=84=9A=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- install.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/install.sh b/install.sh index 374cdbf..3a10a22 100644 --- a/install.sh +++ b/install.sh @@ -41,6 +41,7 @@ echo "4. 查看分享链接" echo "5. 停止容器" echo "6. 更新镜像" echo "7. 更新端口" +echo "8. 修改域名" # 读取用户选择 read -p "输入您的选择: " choice @@ -80,6 +81,10 @@ case $choice in # 更新端口 bash ./bin/update_port.sh ;; + 8) + # 修改域名 + bash ./bin/update_domain.sh + ;; *) echo "无效的选择, 请重新选择." ;;