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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
경로 수정은 올바르지만,
../../와 같은 상대 경로는 파일 구조가 변경될 때 깨지기 쉬워 유지보수성을 저해할 수 있습니다.향후 리팩토링 시 다음과 같은 방법을 고려하여 안정성을 높일 수 있습니다:
docker-compose실행 위치 변경:docker-compose명령을 프로젝트 루트 디렉토리에서 실행하고, 모든 볼륨 경로를./apps/...와 같이 루트에 상대적으로 지정합니다. 이 경우 다른compose파일들의build.context도.으로 수정해야 합니다.compose파일 상단에 프로젝트 루트를 가리키는 앵커를 정의하여 재사용할 수 있습니다.이 PR은 긴급 수정이므로 현재 변경 사항은 적절하지만, 장기적인 관점에서 개선을 고려해보는 것이 좋습니다.