Files
theresa3rd-bot/.drone.yml
mol 28d9e9b8a4
All checks were successful
continuous-integration/drone/push Build is passing
test
2023-12-08 14:32:02 +08:00

64 lines
2.2 KiB
YAML

kind: pipeline # 定义一个管道
type: docker # 当前管道的类型
name: build # 当前管道的名称
steps: # 定义管道的执行步骤
# - name: build-project # 步骤名称
# image: node:18-bullseye # 当前步骤使用的镜像
# volumes:
# - name: node_modules
# path: /drone/src/node_modules
# commands: # 当前步骤执行的命令
# - pwd
# - npm config set registry https://registry.npm.taobao.org
# - npm i
- name: build-image
image: plugins/docker
depends_on: [clone]
settings:
username:
from_secret: docker_username
password:
from_secret: docker_passwd
dockerfile: Dockerfile
mirror: https://fpswa5tm.mirror.aliyuncs.com
registry: https://git.liliyamol.cn:8081
repo: git.liliyamol.cn:8081/mol/theresa3rd-bot
auto_tag: true
---
kind: pipeline # 定义一个管道
type: docker # 当前管道的类型
name: deploy # 当前管道的名称
depends_on:
- build
clone:
disable: true
steps:
- name: deploy-project
image: appleboy/drone-ssh
settings:
host:
from_secret: host
username:
from_secret: server_username # 使用secrets
key:
from_secret: server_key
port: 22
command_timeout: 2m
secrets: [docker_username, docker_passwd]
script:
- echo ==-----==开始部署==-----==
- docker login -u $DOCKER_USERNAME -p $DOCKER_PASSWD git.liliyamol.cn:8081
- docker pull git.liliyamol.cn:8081/mol/theresa3rd-bot:latest
- list=$(docker ps -a | grep theresa3rd-bot* | awk '{print $1}')
- test "$list" = "" && echo "none theresa3rd-bot containers running" || docker stop $list && docker container rm $list
# 过滤出dockerImages的id, 删除none镜像
- docker run -d -p 8134:80 --name=theresa3rd-bot_${DRONE_BUILD_NUMBER} --restart=always -v /mnt/data/opt/Theresa3rd-Bot/appsettings.Production.json:/app/appsettings.Production.json -v /mnt/data/opt/Theresa3rd-Bot/botsettings.yml:/app/botsettings.yml -e DOTNET_RUNNING_IN_CONTAINER=true git.liliyamol.cn:8081/mol/theresa3rd-bot:latest
- docker rmi $(docker images | grep "none" | awk '{print $3}')
- echo ==-----==部署成功==-----==