Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix:ci/cd 포트 수정 #10

Merged
merged 2 commits into from
May 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 테스트 다시 수정 메롱";
}
}
Loading