-
Notifications
You must be signed in to change notification settings - Fork 4
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
Update to compatible docker compose usage #195
Conversation
src/commands/app/start-services.ts
Outdated
const matches = docov.stdout.match(/[^0-9.]*([0-9.]*).*/); | ||
if (matches === null) { | ||
throw new Error( | ||
"Unable to read docker-compose verson. This is weird." | ||
"Unable to read docker compose verson. This is weird." | ||
); | ||
} | ||
const docoVersion = matches.length > 0 ? matches[1] : 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.
This check seems wrong. It should check that there is at least two matches: matches.length >= 2
Co-authored-by: Kuruyia <[email protected]>
Co-authored-by: Kuruyia <[email protected]>
Co-authored-by: Kuruyia <[email protected]>
Co-authored-by: Kuruyia <[email protected]>
Co-authored-by: Kuruyia <[email protected]>
Co-authored-by: Kuruyia <[email protected]>
Co-authored-by: Kuruyia <[email protected]>
Co-authored-by: Kuruyia <[email protected]>
Co-authored-by: Kuruyia <[email protected]>
Co-authored-by: Kuruyia <[email protected]>
Co-authored-by: Kuruyia <[email protected]>
Co-authored-by: Kuruyia <[email protected]>
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.
LGTM!
🎉 This PR is included in version 1.0.0-beta.1 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
🎉 This PR is included in version 1.0.0 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
What does this PR do?
This PR update kourou to use docker compose instead of docker-compose
How should this be manually tested?
...
Other changes
Boyscout