Skip to content

Commit 23a3e2f

Browse files
committed
fix: use compose instead of docker-compose
1 parent 52c959d commit 23a3e2f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ jobs:
2121
port: ${{ secrets.PORT }}
2222
command_timeout: 5m
2323
script: |
24-
cd ~/repos/websocket/server
24+
cd ~/repos/websocket/server/
2525
git pull origin main
2626
git status
2727
if [ $(docker ps -q -f name=websocket-chat) ]; then
2828
docker-compose down
2929
fi
30-
docker-compose build
31-
docker-compose up -d
30+
docker compose build
31+
docker compose up -d

0 commit comments

Comments
 (0)