build: 更新 Docker 镜像仓库地址并添加 admin 服务构建
All checks were successful
Build and Push Docker Image / build (push) Successful in 6m5s

- 将 Docker 镜像仓库地址从 192.168.5.120 修改为 docker.yzj
- 保留原有的 sf-vertx 服务构建,并命名为 vertx
- 新增 sf-admin 服务构建,命名为 admin
This commit is contained in:
jun 2025-05-16 06:16:44 -04:00
parent 91854d75fc
commit 36010ea742

View File

@ -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 .
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 .