Update ddev config

This commit is contained in:
Björn Fromme
2022-03-20 14:53:07 +01:00
parent 6e741d88bd
commit 3f351a8b04
+27 -17
View File
@@ -14,21 +14,23 @@ additional_hostnames:
- ski-wochenenden - ski-wochenenden
- schnee-event - schnee-event
additional_fqdns: [] additional_fqdns: []
mariadb_version: "10.2" database:
mysql_version: "" type: mariadb
nfs_mount_enabled: true version: "10.2"
nfs_mount_enabled: false
mutagen_enabled: false mutagen_enabled: false
hooks: hooks:
post-start: post-start:
- exec: sudo chmod 600 /home/fromme/.ssh/authorized_keys - exec: sudo chmod 600 /home/fromme/.ssh/authorized_keys
- exec: sudo service ssh start - exec: sudo service ssh start
omit_containers: [dba] omit_containers: [dba]
webimage_extra_packages: [ssh,webp] webimage_extra_packages: [ssh]
use_dns_when_possible: true use_dns_when_possible: true
timezone: Europe/Berlin timezone: Europe/Berlin
composer_version: "2" composer_version: "2"
web_environment: web_environment:
- TYPO3_CONTEXT=Development - TYPO3_CONTEXT=Development
nodejs_version: "14"
# Key features of ddev's config.yaml: # Key features of ddev's config.yaml:
@@ -39,21 +41,19 @@ web_environment:
# docroot: <relative_path> # Relative path to the directory containing index.php. # docroot: <relative_path> # Relative path to the directory containing index.php.
# php_version: "7.4" # PHP version to use, "5.6", "7.0", "7.1", "7.2", "7.3", "7.4" "8.0" # php_version: "7.4" # PHP version to use, "5.6", "7.0", "7.1", "7.2", "7.3", "7.4", "8.0", "8.1"
# You can explicitly specify the webimage, dbimage, dbaimage lines but this # You can explicitly specify the webimage but this
# is not recommended, as the images are often closely tied to ddev's' behavior, # is not recommended, as the images are often closely tied to ddev's' behavior,
# so this can break upgrades. # so this can break upgrades.
# webimage: <docker_image> # nginx/php docker image. # webimage: <docker_image> # nginx/php docker image.
# dbimage: <docker_image> # mariadb docker image.
# dbaimage: <docker_image>
# mariadb_version and mysql_version # database:
# ddev can use many versions of mariadb and mysql # type: <dbtype> # mysql, mariadb
# However these directives are mutually exclusive # version: <version> # database version, like "10.3" or "8.0"
# mariadb_version: 10.2 # Note that mariadb_version or mysql_version from v1.18 and earlier
# mysql_version: 8.0 # will automatically be converted to this notation with just a "ddev config --auto"
# router_http_port: <port> # Port to be used for http (defaults to port 80) # router_http_port: <port> # Port to be used for http (defaults to port 80)
# router_https_port: <port> # Port for https (defaults to 443) # router_https_port: <port> # Port for https (defaults to 443)
@@ -76,13 +76,23 @@ web_environment:
# see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones # see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
# For example Europe/Dublin or MST7MDT # For example Europe/Dublin or MST7MDT
# composer_version: "" # composer_root: <relative_path>
# if composer_version:"" it will use the current ddev default composer release. # Relative path to the composer root directory from the project root. This is
# the directory which contains the composer.json and where all Composer related
# commands are executed.
# composer_version: "2"
# if composer_version:"2" it will use the most recent composer v2
# It can also be set to "1", to get most recent composer v1 # It can also be set to "1", to get most recent composer v1
# or "2" for most recent composer v2. # or "" for the default v2 created at release time.
# It can be set to any existing specific composer version. # It can be set to any existing specific composer version.
# After first project 'ddev start' this will not be updated until it changes # After first project 'ddev start' this will not be updated until it changes
# nodejs_version: "16"
# change from the default system Node.js version to another supported version, like 12, 14, 17.
# Note that you can use 'ddev nvm' or nvm inside the web container to provide nearly any
# Node.js version, including v6, etc.
# additional_hostnames: # additional_hostnames:
# - somename # - somename
# - someothername # - someothername
@@ -96,7 +106,7 @@ web_environment:
# Please take care with this because it can cause great confusion. # Please take care with this because it can cause great confusion.
# upload_dir: custom/upload/dir # upload_dir: custom/upload/dir
# would set the destination path for ddev import-files to custom/upload/dir. # would set the destination path for ddev import-files to <docroot>/custom/upload/dir
# working_dir: # working_dir:
# web: /var/www/html # web: /var/www/html