123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- kind: pipeline
- type: docker
- name: tmp-admin
- clone:
- depth: 1
- disable: true
- steps:
- - name: clone
- image: alpine/git
- commands:
- - git config --global credential.helper store
- - git clone -b develop http://192.168.1.8:3000/duanxiaoduan/tmr-admin.git
- - pwd
- - cp -R tmr-admin/* ./
- - ls -l
- - name: build
- image: plugins/docker
- volumes:
- - name: hosts
- path: /etc/hosts
- - name: docker-ca
- path: /etc/docker
- - name: docker-sock
- path: /var/run/docker.sock
- settings:
- dockerfile: /drone/src/Dockerfile
- username:
- from_secret: aliyun_name
- password:
- from_secret: aliyun_password
- repo: registry.cn-hangzhou.aliyuncs.com/kpt-event/tmr-admin
- registry: registry.cn-hangzhou.aliyuncs.com
- tags: [1.0.0,latest]
- trigger:
- branch:
- include:
- - develop
- event:
- include:
- - push
- volumes:
- - name: host
- host:
- path: /etc/host
- - name: docker-ca
- host:
- path: /ect/docker
- - name: docker-sock
- host:
- path: /var/run/docker.sock
|