Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
eb52f4e7eb | ||
|
|
f9178f1dac | ||
|
|
aa6d790dbb | ||
|
|
06dbdbed7e | ||
|
|
686391a403 | ||
|
|
39d4bfa730 | ||
|
|
1114f2561c | ||
|
|
929bcfdf2e | ||
|
|
d624523547 | ||
|
|
e7829cd990 | ||
|
|
03e97547da | ||
|
|
0e4d45628a | ||
|
|
573b28a1b8 |
+25
-17
@@ -2,21 +2,29 @@ kind: pipeline
|
||||
name: default
|
||||
|
||||
steps:
|
||||
# docker 打包
|
||||
- name: docker
|
||||
image: plugins/docker
|
||||
settings:
|
||||
context: ./
|
||||
dockerfile: ./Dockerfile
|
||||
username:
|
||||
from_secret: docker_username
|
||||
password:
|
||||
from_secret: docker_password
|
||||
registry: https://registry.cn-hangzhou.aliyuncs.com
|
||||
repo: registry.cn-hangzhou.aliyuncs.com/loghub/redis
|
||||
tags:
|
||||
- 8-alpine
|
||||
# 步骤2:拉取其他 Git 项目(common-utils)
|
||||
- name: clone-other-project
|
||||
image: alpine/git:latest # 轻量 Git 镜像
|
||||
commands:
|
||||
# 拉取其他项目到指定目录
|
||||
- >
|
||||
git clone
|
||||
-b proj-snd-ess-3.1
|
||||
--depth 1
|
||||
https://zwzeng:glpat-Ht2452yuDgM84iNzu32b@git.ittx.com.cn/edi/edi-wms.git
|
||||
|
||||
volumes:
|
||||
- name: ruoyi_cache
|
||||
temp: {}
|
||||
# docker 打包
|
||||
- name: deploy
|
||||
image: registry.cn-hangzhou.aliyuncs.com/loghub/wms-system-service:gradle8
|
||||
commands:
|
||||
- cd edi-wms
|
||||
- >
|
||||
gradle jib -stacktrace
|
||||
--parallel
|
||||
-Pmax-workers=16
|
||||
-x test
|
||||
-PdockerBuild=true
|
||||
-Dcybertrans.idp.enabled=false
|
||||
-Djib.from.image=registry.cn-hangzhou.aliyuncs.com/loghub/wms-system-service:snde-jdk
|
||||
-Djib.to.image=registry.cn-hangzhou.aliyuncs.com/loghub/wms-system-service
|
||||
-Djib.to.tags=proj-walle-snde-edi-ess
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
FROM redis:8.6-rc1-alpine3.23
|
||||
FROM rabbitmq:4.2-management-alpine
|
||||
|
||||
RUN set -eux; \
|
||||
apk update; \
|
||||
|
||||
Reference in New Issue
Block a user