From 3ef427a9ae39879db51dfff1d1287d08f6ba0340 Mon Sep 17 00:00:00 2001 From: Olia Lisa Date: Mon, 20 Jul 2026 15:42:30 +0800 Subject: [PATCH] =?UTF-8?q?refactor:=20=E5=8F=96=E6=B6=88=E5=AE=89?= =?UTF-8?q?=E8=A3=85docker-compose.=20=E7=94=A8docker=20compose=E5=AD=90?= =?UTF-8?q?=E5=91=BD=E4=BB=A4=E4=BB=A3=E6=9B=BF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- install.sh | 5 ----- 1 file changed, 5 deletions(-) diff --git a/install.sh b/install.sh index 8fb7d3e..038aace 100644 --- a/install.sh +++ b/install.sh @@ -38,11 +38,6 @@ install_dependencies(){ curl -fsSL https://get.docker.com | bash -s docker fi - if ! command -v docker-compose >/dev/null 2>&1; then - echo 安装docker-compose... - wget -O /usr/local/bin/docker-compose https://github.com/docker/compose/releases/download/v2.29.0/docker-compose-linux-x86_64 - chmod +x /usr/local/bin/docker-compose - fi }