-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
[WIP]update check docker compose #21076
base: main
Are you sure you want to change the base?
Conversation
Signed-off-by: yminer <miner.yang@broadcom.com>
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #21076 +/- ##
===========================================
+ Coverage 45.36% 66.09% +20.72%
===========================================
Files 244 1049 +805
Lines 13333 114645 +101312
Branches 2719 2867 +148
===========================================
+ Hits 6049 75771 +69722
- Misses 6983 34735 +27752
- Partials 301 4139 +3838
Flags with carried forward coverage won't be shown. Click here to find out more. |
@@ -103,7 +103,7 @@ function check_docker { | |||
} | |||
|
|||
function check_dockercompose { | |||
if [! docker compose version] &> /dev/null || [! docker-compose --version] &> /dev/null | |||
if ! [docker compose version &> /dev/null] || ! [docker-compose --version &> /dev/null] |
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.
if ! [docker compose version &> /dev/null] || ! [docker-compose --version &> /dev/null] | |
if ! docker compose version &> /dev/null || ! docker-compose --version &> /dev/null |
This PR is being marked stale due to a period of inactivty. If this PR is still relevant, please comment or remove the stale label. Otherwise, this PR will close in 30 days. |
Thank you for contributing to Harbor!
Comprehensive Summary of your change
Issue being fixed
Fixes #(issue)
Please indicate you've done the following: