automated_api/.drone.yml

28 lines
435 B
YAML
Raw Normal View History

2025-01-10 12:22:50 +08:00
kind: pipeline
type: docker
name: default
2025-01-10 12:22:50 +08:00
steps:
- name: git-clone
image: alpine/git
commands:
- git clone http://120.48.5.80:3000/lixin/automated_api.git
- cd automated_api
- name: docker-build
image: plugins/docker
settings:
dockerfile: Dockerfile
- name: docker-run
image: docker:20.10
commands:
- docker run -d -p 8001:8001 automated_api:latest
2025-01-10 12:22:50 +08:00
trigger:
branch:
- main
2025-01-10 12:22:50 +08:00
event:
- push