From 36010ea742a9cae731efe2518c2ea4051eb282c9 Mon Sep 17 00:00:00 2001 From: jun Date: Fri, 16 May 2025 06:16:44 -0400 Subject: [PATCH] =?UTF-8?q?build:=20=E6=9B=B4=E6=96=B0=20Docker=20?= =?UTF-8?q?=E9=95=9C=E5=83=8F=E4=BB=93=E5=BA=93=E5=9C=B0=E5=9D=80=E5=B9=B6?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=20admin=20=E6=9C=8D=E5=8A=A1=E6=9E=84?= =?UTF-8?q?=E5=BB=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将 Docker 镜像仓库地址从 192.168.5.120 修改为 docker.yzj - 保留原有的 sf-vertx 服务构建,并命名为 vertx - 新增 sf-admin 服务构建,命名为 admin --- Makefile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index b5a9e3f..c1c6274 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,7 @@ -DOCKER_REGISTRY ?= 192.168.5.120 +DOCKER_REGISTRY ?= docker.yzj -build-vertx: - docker build -t $(DOCKER_REGISTRY)/sac/sf-vertx -f ./sf-vertx/Dockerfile --push . \ No newline at end of file +vertx: + docker build -t $(DOCKER_REGISTRY)/sac/sf-vertx -f ./sf-vertx/Dockerfile --push . + +admin: + docker build -t $(DOCKER_REGISTRY)/sac/sf-admin -f ./sf-admin/Dockerfile --push . \ No newline at end of file