-
Notifications
You must be signed in to change notification settings - Fork 0
[FEATURE] GPU 정보 수집을 위한 모니터링 대상 변경 #33
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
Changes from all commits
d7f5533
bc908c7
fddbd53
ec569c4
7739b20
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -13,6 +13,8 @@ services: | |
| count: 1 | ||
| capabilities: [gpu] | ||
| container_name: app-blue | ||
| networks: | ||
| - mynetwork | ||
|
|
||
| app-green: | ||
| image: ${ECR_URI}/dearbelly-cv:latest | ||
|
|
@@ -27,4 +29,10 @@ services: | |
| - driver: nvidia | ||
| count: 1 | ||
| capabilities: [ gpu ] | ||
| container_name: app-green | ||
| container_name: app-green | ||
| networks: | ||
| - mynetwork | ||
|
|
||
| networks: | ||
| mynetwork: | ||
| driver: bridge | ||
|
Comment on lines
+36
to
+38
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
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 이미지에
latest태그를 사용하는 것을 지양해야 합니다.latest태그는 예기치 않은 변경사항을 가져올 수 있으므로, 특정 버전으로 고정하는 것이 좋습니다. 예를 들어3.3.5-3.1.8-ubuntu22.04와 같은 구체적인 버전을 명시해주세요.