Skip to content

Commit

Permalink
fix: use compose instead of docker-compose
Browse files Browse the repository at this point in the history
  • Loading branch information
Rex-82 committed Aug 19, 2024
1 parent 52c959d commit 23a3e2f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ jobs:
port: ${{ secrets.PORT }}
command_timeout: 5m
script: |
cd ~/repos/websocket/server
cd ~/repos/websocket/server/
git pull origin main
git status
if [ $(docker ps -q -f name=websocket-chat) ]; then
docker-compose down
fi
docker-compose build
docker-compose up -d
docker compose build
docker compose up -d

0 comments on commit 23a3e2f

Please sign in to comment.