From a8a265c2a75e220c3df1dd8394db507e201c2a97 Mon Sep 17 00:00:00 2001 From: snaily Date: Sun, 31 Aug 2025 22:00:36 +0800 Subject: [PATCH] =?UTF-8?q?chore(docker):=20=E6=B3=A8=E9=87=8A=E6=8E=89=20?= =?UTF-8?q?adminer=20=E6=9C=8D=E5=8A=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 暂时移除 Adminer 服务,因为它目前不是必需的,并且可以减少运行的容器数量,简化本地开发环境。 --- docker-compose.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 3410285..6b61d72 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -37,12 +37,12 @@ services: timeout: 5s # 每次检查的超时时间为5秒 retries: 3 # 重试3次失败后标记为 unhealthy start_period: 30s # 容器启动后等待30秒再开始第一次健康检查 - adminer: - image: adminer:latest - container_name: gemini-balance-adminer - restart: unless-stopped - ports: - - "8080:8080" - depends_on: - mysql: - condition: service_healthy \ No newline at end of file + # adminer: + # image: adminer:latest + # container_name: gemini-balance-adminer + # restart: unless-stopped + # ports: + # - "8080:8080" + # depends_on: + # mysql: + # condition: service_healthy \ No newline at end of file