Skip to content

Commit

Permalink
Fix: 깃허브 액션 수정
Browse files Browse the repository at this point in the history
도커에서 `host.docker.internal` 를 사용하기 위한 파라미터 추가
  • Loading branch information
pjh5365 authored Sep 1, 2024
1 parent 6700619 commit f23be5b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
docker push ${{ secrets.DOCKER_IMAGE_NAME }}:latest
# 도커 이미지 EC2 인스턴스에 배포
deploy-to-ec2:
deploy_to_ec2:
needs: build_and_push
runs-on: ubuntu-24.04

Expand All @@ -66,5 +66,6 @@ jobs:
# 최신 도커 이미지로 컨테이너 실행
sudo docker pull ${{ secrets.DOCKER_IMAGE_NAME }}:latest # 도커 최신 이미지 다운로드
sudo docker run --name kaboo-chat -d -p 8080:8080 ${{ secrets.DOCKER_IMAGE_NAME }}:latest # 도커 이미지 실행
# 도커 이미지 실행 (host.docker.internal 사용 가능하도록)
docker run --name kaboo-chat -d --add-host host.docker.internal:host-gateway -p 8080:8080 ${{ secrets.DOCKER_IMAGE_NAME }}:latest
sudo docker image prune -f # 구버전의 도커 이미지 제거

0 comments on commit f23be5b

Please sign in to comment.