53 lines
1.1 KiB
YAML
53 lines
1.1 KiB
YAML
kind: pipeline
|
|
type: docker
|
|
name: Build Hexo-Images
|
|
|
|
trigger:
|
|
event:
|
|
include:
|
|
- custom
|
|
|
|
steps:
|
|
- name: Build Hexo-Images
|
|
image: plugins/docker
|
|
pull: if-not-exists
|
|
settings:
|
|
registry:
|
|
from_secret: REGISTRY
|
|
username:
|
|
from_secret: DOCKER_USERNAME
|
|
password:
|
|
from_secret: DOCKER_PASSWORD
|
|
repo:
|
|
from_secret: REPO
|
|
dry_run: false
|
|
tags:
|
|
- hexo
|
|
context: ./
|
|
dockerfile: ./Dockerfile-hexo
|
|
build_args:
|
|
# - IMAGENAME=node:alpine
|
|
- IMAGENAME=registry.cn-hangzhou.aliyuncs.com/offends/hexo:node-alpine
|
|
- name: Build Hexo-Async-Images
|
|
image: plugins/docker
|
|
pull: if-not-exists
|
|
settings:
|
|
registry:
|
|
from_secret: REGISTRY
|
|
username:
|
|
from_secret: DOCKER_USERNAME
|
|
password:
|
|
from_secret: DOCKER_PASSWORD
|
|
repo:
|
|
from_secret: REPO
|
|
dry_run: false
|
|
tags:
|
|
- hexo-async
|
|
context: ./
|
|
dockerfile: ./Dockerfile-hexo-async
|
|
build_args:
|
|
- IMAGENAME=registry.cn-hangzhou.aliyuncs.com/offends/hexo:hexo
|
|
volumes:
|
|
- name: dockersock
|
|
host:
|
|
path: /var/run/docker.sock |