Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Problem
Github Actions를 통해 EC2로 배포된
jar
파일 실행 시 프로젝트 내부 로직 중 redis 캐시 애노테이션이 포함돼 문제가 발생하고 있었습니다.다음은 발생한 에러 로그 일부입니다.
Github Actions에서 활용될
deploy.yml
에서docker-compose.yml
을 빌드 후 실행하는 로직을 추가했었으나volume
설정에서 문제가 발생했고, docker container를 띄우는 작업을 workflow에서 처리하기 어렵다고 판단했습니다. 다음은 발생했던 에러 로그입니다.Resolved
redis
,prometheus
,grafana
를 docker container로 한번에 띄울 수 있도록docker-compose.yml
작성했습니다.prometheus
에서 volumes에 적용된된prometheus.yml
은 프로젝트 내src/main/resources/prometheus.yml
을 의미합니다.docker compose 실행 관리를 Github Actions에서 처리하지 않고,
appspec.yml
에 의해 배포할 때마다 실행되는start.sh
,stop.sh
를 수정해docker-compose.yml
실행 및 중단하도록 설정했습니다.