22 lines
445 B
YAML
22 lines
445 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: "构建Docker镜像"
|
|
|
|
node:
|
|
name: pve
|
|
|
|
steps:
|
|
- name: Build and Push
|
|
image: harbor.seahi.me/plugins/docker
|
|
pull: if-not-exists
|
|
privileged: false
|
|
settings:
|
|
dockerfile: Dockerfile
|
|
auto_tag: true
|
|
registry: harbor.seahi.me
|
|
repo: harbor.seahi.me/stu/task-supervisor
|
|
username:
|
|
from_secret: harbor_username
|
|
password:
|
|
from_secret: harbor_password
|