--- kind: pipeline type: docker name: default volumes: - name: gopath host: path: /usr/local/path/gopath steps: - name: golang-build image: golang:1.17-alpine3.15 volumes: - name: gopath path: /go commands: - export GOPROXY=https://goproxy.cn - go mod init test-drone - go mod tidy - CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o test-drone - name: docker-build image: docker settings: username: tjqmhu password: tjqm4912 repo: registry.cn-hangzhou.aliyuncs.com/huvipg/test-drone dockerfile: Dockerfile registry: https://registry.cn-hangzhou.aliyuncs.com tags: ${DRONE_BUILD_NUMBER} - name: push-docker-image image: allgreed/drone-load-and-store settings: archive: docker-image.tar repo: registry.cn-hangzhou.aliyuncs.com/huvipg/test-drone username: from_secret: tjqmhu password: from_secret: tjqm4912 - name: save-image image: docker commands: - docker save -o myimage.tar registry.cn-hangzhou.aliyuncs.com/huvipg/test-drone:${DRONE_BUILD_NUMBER} # - name: rancher-push # image: registry.cn-hangzhou.aliyuncs.com/hvp/dpr:30 # 直接用busybox # settings: # docker_img : registry.cn-hangzhou.aliyuncs.com/huvipg/test-drone:${DRONE_BUILD_NUMBER}