Skip to content

Commit

Permalink
fix: 포트 수정 3000 -> 4173
Browse files Browse the repository at this point in the history
  • Loading branch information
chan-byeong committed Nov 12, 2024
1 parent 43f77ac commit c425e40
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/frontend-ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
docker rm you-quiz-fe || true
docker pull ${{ secrets.DOCKER_HUB_CLIENT_USERNAME }}/you-quiz-fe:${{ github.run_number }}
docker run -d --name you-quiz-fe -p 80:3000 ${{ secrets.DOCKER_HUB_CLIENT_USERNAME }}/you-quiz-fe:${{ github.run_number }}
docker run -d --name you-quiz-fe -p 80:4173 ${{ secrets.DOCKER_HUB_CLIENT_USERNAME }}/you-quiz-fe:${{ github.run_number }}
- name: Github Actions IP를 ACG, ACL 규칙에서 삭제
run: |
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.fe
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ RUN yarn install

# 환경 변수 설정
ENV NODE_ENV production
ENV PORT 3000
ENV PORT 4173

# 포트 설정
EXPOSE 3000
EXPOSE 4173

# 실행 명령어
CMD ["yarn", "workspace", "client", "preview", "--host", "0.0.0.0"]

0 comments on commit c425e40

Please sign in to comment.