-
-
Notifications
You must be signed in to change notification settings - Fork 55
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
Minor cleanup as the years go by (docker-compose version, etc) #119
Conversation
Review or Edit in CodeSandboxOpen the branch in Web Editor • VS Code • Insiders |
WalkthroughThis pull request primarily focuses on updating the DDEV setup for a Drupal 9 project, including PHP, MariaDB, and Node.js versions. It also introduces performance optimization strategies and modifies service ports. A new Changes
TipsChat with CodeRabbit Bot (
|
router_http_port: "80" | ||
router_https_port: "443" | ||
xdebug_enabled: false | ||
additional_hostnames: [] | ||
additional_fqdns: [] |
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.
These just aren't useful to have in here
database: | ||
type: mariadb | ||
version: "10.3" |
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.
Better to use current required version? Doesn't d10 require 10.4? It's now the default anyway.
web_environment: [] | ||
nodejs_version: "16" |
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.
18 is now the default
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.
Review Status
Actionable comments generated: 0
Files selected for processing (3)
- .ddev/config.yaml (11 hunks)
- .ddev/docker-compose.ports.yaml (1 hunks)
- .ddev/docker-compose.testing.yaml (1 hunks)
Files skipped from review due to trivial changes (3)
- .ddev/config.yaml
- .ddev/docker-compose.ports.yaml
- .ddev/docker-compose.testing.yaml
@@ -1,5 +1,4 @@ | |||
# Expose port 3000 and 5000 of DDEV's web container. | |||
version: '3.6' |
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.
version
is obsolete
database: | ||
type: mariadb | ||
version: "10.3" | ||
nfs_mount_enabled: false | ||
mutagen_enabled: false |
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.
mutagen_enabled
is no longer valid syntax
The Problem/Issue/Bug
I just took a quick pass through and noted a few things like needing to remove
version
from docker-composeSummary by CodeRabbit
chromedriver
service in the testing environment usingdrupalci/chromedriver:production
image, enhancing testing capabilities.