-
-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added better messages around when and how to update docker components
- Loading branch information
Showing
6 changed files
with
43 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
'use strict'; | ||
|
||
// checks to see if a setting is disabled | ||
module.exports = () => ({ | ||
type: 'warning', | ||
title: 'Recommend updating DOCKER COMPOSE', | ||
detail: [ | ||
'Looks like you might be falling a bit behind on Docker Compose.', | ||
'In order to ensure the best stability and support we recommend you update', | ||
'by running the hidden "lando setup" command.', | ||
], | ||
command: 'lando setup --skip-common-plugins', | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
'use strict'; | ||
|
||
// checks to see if a setting is disabled | ||
module.exports = ({os}) => ({ | ||
type: 'warning', | ||
title: 'Recommend updating DOCKER DESKTOP', | ||
detail: [ | ||
'Looks like you might be falling a bit behind on Docker Desktop.', | ||
'In order to ensure the best stability and support we recommend you update', | ||
'by launching Docker Desktop and updating through their app.', | ||
], | ||
url: `https://docs.docker.com/desktop/settings/${os}/#software-updates`, | ||
}); |