Skip to content

Commit

Permalink
Update icurri_deploy.yml (#55)
Browse files Browse the repository at this point in the history
  • Loading branch information
genius00hwan authored Nov 27, 2024
1 parent fcbd3d6 commit fe9ceea
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/icurri_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,4 +106,12 @@ jobs:
sudo docker pull ${{ secrets.ECR_URI }}:${{ github.sha }}

# Run the new container
sudo docker run --name dotflow-dev-repo -d -e SPRING_PROFILE=dev -e TZ=Asia/Seoul -e SERVER=true -p 8080:8080 ${{ secrets.ECR_URI }}:${{ github.sha }}
sudo docker run --name dotflow-dev-repo -d \
-e SPRING_PROFILE=dev \
-e TZ=Asia/Seoul \
-e SERVER=true \
-p 8080:8080 \
-p 6379:6379 \
-p 3306:3306 \ # MySQL 포트 매핑
-p 27017:27017 \ # MongoDB 포트 매핑
${{ secrets.ECR_URI }}:${{ github.sha }

0 comments on commit fe9ceea

Please sign in to comment.