Update the ddev configuration to the latest version
This commit is contained in:
parent
fcf4de7dee
commit
43d7697c0e
2 changed files with 35 additions and 24 deletions
9
.ddev/.gitignore
vendored
9
.ddev/.gitignore
vendored
|
@ -1,6 +1,13 @@
|
|||
#ddev-generated: Automatically generated ddev .gitignore.
|
||||
# You can remove the above line if you want to edit and maintain this file yourself.
|
||||
|
||||
/commands/*/*.example
|
||||
/commands/*/README.txt
|
||||
/commands/host/launch
|
||||
/commands/db/mysql
|
||||
/homeadditions/*.example
|
||||
/homeadditions/README.txt
|
||||
/.gitignore
|
||||
/import.yaml
|
||||
/docker-compose.yaml
|
||||
/db_snapshots
|
||||
|
@ -14,6 +21,4 @@
|
|||
/.sshimageBuild
|
||||
/.webimageExtra
|
||||
/.dbimageExtra
|
||||
/.webimageBuild
|
||||
/.dbimageBuild
|
||||
/*-build/Dockerfile.example
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
APIVersion: v1.10.1
|
||||
APIVersion: v1.12.2
|
||||
name: agaric-coop
|
||||
type: drupal8
|
||||
docroot: web
|
||||
|
@ -12,15 +12,15 @@ additional_fqdns: []
|
|||
mariadb_version: "10.2"
|
||||
nfs_mount_enabled: false
|
||||
provider: default
|
||||
use_dns_when_possible: true
|
||||
use_dns_when_possible: false
|
||||
timezone: ""
|
||||
|
||||
|
||||
# This config.yaml was created with ddev version v1.10.1
|
||||
# webimage: drud/ddev-webserver:v1.10.0
|
||||
# dbimage: drud/ddev-dbserver:v1.10.0-10.2
|
||||
# dbaimage: drud/phpmyadmin:v1.10.0
|
||||
# bgsyncimage: drud/ddev-bgsync:v1.10.0
|
||||
# This config.yaml was created with ddev version v1.12.2
|
||||
# webimage: drud/ddev-webserver:v1.12.2
|
||||
# dbimage: drud/ddev-dbserver-mariadb-10.2:v1.12.0
|
||||
# dbaimage: drud/phpmyadmin:v1.12.0
|
||||
# bgsyncimage: drud/ddev-bgsync:v1.12.0
|
||||
# However we do not recommend explicitly wiring these images into the
|
||||
# config.yaml as they may break future versions of ddev.
|
||||
# You can update this config.yaml using 'ddev config'.
|
||||
|
@ -34,7 +34,7 @@ timezone: ""
|
|||
|
||||
# docroot: <relative_path> # Relative path to the directory containing index.php.
|
||||
|
||||
# php_version: "7.2" # PHP version to use, "5.6", "7.0", "7.1", "7.2", "7.3"
|
||||
# php_version: "7.2" # PHP version to use, "5.6", "7.0", "7.1", "7.2", "7.3", "7.4"
|
||||
|
||||
# You can explicitly specify the webimage, dbimage, dbaimage lines but this
|
||||
# is not recommended, as the images are often closely tied to ddev's' behavior,
|
||||
|
@ -45,6 +45,12 @@ timezone: ""
|
|||
# dbaimage: <docker_image>
|
||||
# bgsyncimage: <docker_image>
|
||||
|
||||
# mariadb_version and mysql_version
|
||||
# ddev can use many versions of mariadb and mysql
|
||||
# However these directives are mutually exclusive
|
||||
# mariadb_version: 10.2
|
||||
# mysql_version: 8.0
|
||||
|
||||
# router_http_port: <port> # Port to be used for http (defaults to port 80)
|
||||
# router_https_port: <port> # Port for https (defaults to 443)
|
||||
|
||||
|
@ -95,7 +101,7 @@ timezone: ""
|
|||
|
||||
# webcache_enabled: false (deprecated)
|
||||
# Was only for macOS, but now deprecated.
|
||||
# See https://ddev.readthedocs.io/en/stable/users/performance/#using-webcache_enabled-to-cache-the-project-directory
|
||||
# See https://ddev.readthedocs.io/en/stable/users/performance/#webcache
|
||||
|
||||
# host_https_port: "59002"
|
||||
# The host port binding for https can be explicitly specified. It is
|
||||
|
@ -125,7 +131,7 @@ timezone: ""
|
|||
# dbimage_extra_packages: [telnet,netcat]
|
||||
# Extra Debian packages that are needed in the dbimage can be added here
|
||||
|
||||
use_dns_when_possible: false
|
||||
# use_dns_when_possible: true
|
||||
# If the host has internet access and the domain configured can
|
||||
# successfully be looked up, DNS will be used for hostname resolution
|
||||
# instead of editing /etc/hosts
|
||||
|
|
Loading…
Reference in a new issue