Skip to content

Commit

Permalink
Merge pull request #10 from Tave-13th-Project-Team-4-Fiurinee/feature…
Browse files Browse the repository at this point in the history
…/ci-cd

fix:ci/cd 포트 수정
  • Loading branch information
ss7622 authored May 25, 2024
2 parents 1a3b8a6 + 2b75155 commit 5dd35ec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dev_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
# 기존 컨테이너를 제거합니다.
sudo docker rm fiurinee || true
# 새 컨테이너를 실행하면서 환경 변수를 전달합니다.
sudo docker run -d -p 3000:8080 --name fiurinee \
sudo docker run -d -p 8080:8080 --name fiurinee \
-e DB_URL=jdbc:postgresql://database-fiurinee.czyqweykwib4.ap-northeast-2.rds.amazonaws.com:5432/fiurinee \
-e DB_USERNAME=${{ secrets.DB_USERNAME }} \
-e DB_PASSWORD=${{ secrets.DB_PASSWORD }} \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ public class HelloController {
@GetMapping("/docker")
@ResponseBody
public String sayHello() {
return "ci/cd 테스트 다시 수정";
return "ci/cd 테스트 다시 수정 메롱";
}
}

0 comments on commit 5dd35ec

Please sign in to comment.