26 lines
646 B
YAML
26 lines
646 B
YAML
kind: pipeline
|
|
name: default
|
|
|
|
clone:
|
|
depth: 1
|
|
|
|
steps:
|
|
# docker 打包
|
|
- name: docker
|
|
image: plugins/docker
|
|
environment:
|
|
HTTP_PROXY: socks5://192.168.9.1:7991
|
|
HTTPS_PROXY: socks5://192.168.9.1:7991
|
|
NO_PROXY: localhost,127.0.0.1,192.168.0.0/16,192.168.9.0/24,192.168.9.5,git.freeicu.top
|
|
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/wms-system-service
|
|
tags:
|
|
- gradle9
|