Skip to content

Commit

Permalink
BUG: deploy high priroty bug, latest image was not used.
Browse files Browse the repository at this point in the history
  • Loading branch information
sudhanshugautam2911 committed Nov 8, 2024
1 parent 91993e8 commit 78dacc3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
username: ${{ secrets.SSH_USERNAME }}
key: ${{ secrets.SSH_KEY }}
script: |
sudo docker pull sudhnashu2911/payment-pe
sudo docker pull sudhnashu2911/payment-pe:latest
sudo docker stop web-app || true
sudo docker rm web-app || true
sudo docker run -d --name web-app -p 3005:3000 \
Expand Down
2 changes: 1 addition & 1 deletion apps/bank-webhook/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ app.post("/hdfcWebhook", async (req, res) => {
}

})
app.listen(3000, () => console.log("Server ready on port 3000."));
app.listen(3003, () => console.log("Server ready on port 3003."));
// app.listen(3003);
export default app;

0 comments on commit 78dacc3

Please sign in to comment.