Skip to content

Commit

Permalink
feat: updates to requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
yokwejuste committed Jan 24, 2024
1 parent a77641a commit aedc27f
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,16 @@ jobs:
password: "Password123!"
port: "22"
script: |
if [ "$(docker ps -aq)" != "" ]; then
docker rm -f $(docker ps -aq)
fi
if [ "$(docker images -q)" != "" ]; then
docker rmi -f $(docker images -q)
fi
if [ "$(docker volume ls -q)" != "" ]; then
docker volume rm -f $(docker volume ls -q)
fi
cd visuleo_port
docker system prune -af
docker compose down --volumes
docker compose up -d --build
Binary file modified requirements.txt
Binary file not shown.

0 comments on commit aedc27f

Please sign in to comment.