From 4ee2e545a94418f3e2f1b9839cdc5c37495faf1e Mon Sep 17 00:00:00 2001 From: Gaze Date: Fri, 4 Aug 2023 19:55:16 +0800 Subject: [PATCH] fix: requirements.txt --- .drone.yml | 31 +++++++------------------------ requirements.txt | 1 + 2 files changed, 8 insertions(+), 24 deletions(-) diff --git a/.drone.yml b/.drone.yml index fe5b6f9..0f4507e 100644 --- a/.drone.yml +++ b/.drone.yml @@ -3,30 +3,6 @@ type: docker name: thief_music steps: - # 删除老版本 - - name: deploy-clean - image: appleboy/drone-ssh - when: - branch: master - event: push - settings: - host: - from_secret: ssh_host - username: - from_secret: ssh_username - password: - from_secret: ssh_password - port: 2222 - command_timeout: 2m - script: - - | - if docker container ls -a -f name=thief_music | grep -q thief_music; then - docker stop thief_music - docker rm thief_music - else - echo "Container thief_music is not running, nothing to stop and remove." - fi - # 上传文件 - name: upload-file image: appleboy/drone-scp @@ -64,4 +40,11 @@ steps: script: - cd /root/Projects/thief_music - docker build -t thief_music . + - | + if docker container ls -a -f name=thief_music | grep -q thief_music; then + docker stop thief_music + docker rm thief_music + else + echo "Container thief_music is not running, nothing to stop and remove." + fi - docker run -d --name thief_music -p 7788:7788 thief_music diff --git a/requirements.txt b/requirements.txt index c5a9455..7487cd0 100644 --- a/requirements.txt +++ b/requirements.txt @@ -32,3 +32,4 @@ uvicorn==0.20.0 w3lib==2.1.1 websockets==10.4 zipp==3.16.2 +python-multipart==0.0.6