-
Notifications
You must be signed in to change notification settings - Fork 584
update docker-compose version to latest and add new test scenarios #1571
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
base: main
Are you sure you want to change the base?
Changes from all commits
835b7a3
e4e1adb
c3fd4c3
fccac64
3da5b7b
044a6b1
d204c29
2f8f28e
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 |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| docker_dash_compose_latest_no_moby.sh |
|
Contributor
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. Same as above
Contributor
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. @sireeshajonnalagadda I don't see changes on this file though. Could you please convert this to symlink as well if its a duplicated copy.
Contributor
Author
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. @Kaniska244 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| #!/bin/bash | ||
|
|
||
| set -e | ||
|
|
||
| # Optional: Import test library | ||
| source dev-container-features-test-lib | ||
|
|
||
| # Definition specific tests | ||
| check "docker compose" bash -c "docker compose version | grep -E '5.[0-9]+.[0-9]+'" | ||
| check "docker-compose" bash -c "docker-compose --version | grep -E '5.[0-9]+.[0-9]+'" | ||
| check "installs compose-switch as docker-compose" bash -c "[[ -f /usr/local/bin/docker-compose ]]" | ||
|
|
||
| # Report result | ||
| reportResults |
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 this test script is duplicated from existing test scripts, can we please create a symlink to the original script instead of duplication?
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.
Added this test script for Docker Compose latest(5.x.x); retained unchanged as only version differs. Created symlink to align with existing 'latest' script."