
Some checks failed
continuous-integration/drone/push Build is failing
- 在 .drone.yml 文件中注释掉了 Docker 镜像源配置 - 此修改可能会影响 Docker 镜像的下载速度和可靠性
25 lines
376 B
YAML
25 lines
376 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
steps:
|
|
- name: build
|
|
image: plugins/docker
|
|
settings:
|
|
dockerfile: Dockerfile
|
|
dry_run: true
|
|
repo: automated-api
|
|
tags:
|
|
- latest
|
|
# mirror: https://docker.mirrors.ustc.edu.cn
|
|
|
|
trigger:
|
|
branch:
|
|
- main
|
|
- master
|
|
|
|
volumes:
|
|
- name: docker
|
|
host:
|
|
path: /var/run/docker.sock
|