Skip to content

Commit

Permalink
build: docker run시 3000 포트로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
sukkyun2 committed Aug 7, 2024
1 parent 17fc85e commit 62c9f85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
script: |
whoami
docker stop ${{ env.CONTAINER_NAME }} && docker rm ${{ env.CONTAINER_NAME }}
docker run -d -p 80:80 --name ${{ env.CONTAINER_NAME }} --restart always ${{ env.DOCKER_IMAGE }}:latest
docker run -d -p 3000:3000 --name ${{ env.CONTAINER_NAME }} --restart always ${{ env.DOCKER_IMAGE }}:latest
- name: Health Check
uses: jtalk/url-health-check-action@v3
Expand Down

0 comments on commit 62c9f85

Please sign in to comment.