Skip to content

Commit 95586be

Browse files
authored
Merge pull request #75 from SU-SWS/SWSDEVOPS-163-drupal-10-3
SWSDEVOPS-163 - Drupal update 10.3
2 parents 2bafdce + d5416e9 commit 95586be

File tree

645 files changed

+91538
-57703
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

645 files changed

+91538
-57703
lines changed

.ddev/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
ARG BASE_IMAGE
2+
FROM $BASE_IMAGE
3+
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y -o Dpkg::Options::="--force-confnew" --no-install-recommends --no-install-suggests imagemagick

.ddev/config.yaml

Lines changed: 284 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,284 @@
1+
name: casbs
2+
type: drupal
3+
docroot: docroot
4+
php_version: "8.3"
5+
webserver_type: nginx-fpm
6+
xdebug_enabled: false
7+
additional_hostnames: []
8+
additional_fqdns: []
9+
database:
10+
type: mysql
11+
version: "8.0"
12+
use_dns_when_possible: true
13+
composer_version: "2"
14+
web_environment: []
15+
corepack_enable: false
16+
webimage_extra_packages: [imagemagick]
17+
18+
# Key features of DDEV's config.yaml:
19+
20+
# name: <projectname> # Name of the project, automatically provides
21+
# http://projectname.ddev.site and https://projectname.ddev.site
22+
23+
# type: <projecttype> # backdrop, craftcms, django4, drupal, drupal6, drupal7, laravel, magento, magento2, php, python, shopware6, silverstripe, typo3, wordpress
24+
# See https://ddev.readthedocs.io/en/stable/users/quickstart/ for more
25+
# information on the different project types
26+
# "drupal" covers recent Drupal 8+
27+
28+
# docroot: <relative_path> # Relative path to the directory containing index.php.
29+
30+
# php_version: "8.2" # PHP version to use, "5.6", "7.0", "7.1", "7.2", "7.3", "7.4", "8.0", "8.1", "8.2", "8.3", "8.4"
31+
32+
# You can explicitly specify the webimage but this
33+
# is not recommended, as the images are often closely tied to DDEV's' behavior,
34+
# so this can break upgrades.
35+
36+
# webimage: <docker_image> # nginx/php docker image.
37+
38+
# database:
39+
# type: <dbtype> # mysql, mariadb, postgres
40+
# version: <version> # database version, like "10.11" or "8.0"
41+
# MariaDB versions can be 5.5-10.8, 10.11, and 11.4.
42+
# MySQL versions can be 5.5-8.0.
43+
# PostgreSQL versions can be 9-16.
44+
45+
# router_http_port: <port> # Port to be used for http (defaults to global configuration, usually 80)
46+
# router_https_port: <port> # Port for https (defaults to global configuration, usually 443)
47+
48+
# xdebug_enabled: false # Set to true to enable Xdebug and "ddev start" or "ddev restart"
49+
# Note that for most people the commands
50+
# "ddev xdebug" to enable Xdebug and "ddev xdebug off" to disable it work better,
51+
# as leaving Xdebug enabled all the time is a big performance hit.
52+
53+
# xhprof_enabled: false # Set to true to enable Xhprof and "ddev start" or "ddev restart"
54+
# Note that for most people the commands
55+
# "ddev xhprof" to enable Xhprof and "ddev xhprof off" to disable it work better,
56+
# as leaving Xhprof enabled all the time is a big performance hit.
57+
58+
# webserver_type: nginx-fpm, apache-fpm, or nginx-gunicorn
59+
60+
# timezone: Europe/Berlin
61+
# This is the timezone used in the containers and by PHP;
62+
# it can be set to any valid timezone,
63+
# see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
64+
# For example Europe/Dublin or MST7MDT
65+
66+
# composer_root: <relative_path>
67+
# Relative path to the Composer root directory from the project root. This is
68+
# the directory which contains the composer.json and where all Composer related
69+
# commands are executed.
70+
71+
# composer_version: "2"
72+
# You can set it to "" or "2" (default) for Composer v2 or "1" for Composer v1
73+
# to use the latest major version available at the time your container is built.
74+
# It is also possible to use each other Composer version channel. This includes:
75+
# - 2.2 (latest Composer LTS version)
76+
# - stable
77+
# - preview
78+
# - snapshot
79+
# Alternatively, an explicit Composer version may be specified, for example "2.2.18".
80+
# To reinstall Composer after the image was built, run "ddev debug refresh".
81+
82+
# nodejs_version: "20"
83+
# change from the default system Node.js version to any other version.
84+
# See https://ddev.readthedocs.io/en/stable/users/configuration/config/#nodejs_version for more information
85+
# and https://www.npmjs.com/package/n#specifying-nodejs-versions for the full documentation,
86+
# Note that using of 'ddev nvm' is discouraged because "nodejs_version" is much easier to use,
87+
# can specify any version, and is more robust than using 'nvm'.
88+
89+
# corepack_enable: false
90+
# Change to 'true' to 'corepack enable' and gain access to latest versions of yarn/pnpm
91+
92+
# additional_hostnames:
93+
# - somename
94+
# - someothername
95+
# would provide http and https URLs for "somename.ddev.site"
96+
# and "someothername.ddev.site".
97+
98+
# additional_fqdns:
99+
# - example.com
100+
# - sub1.example.com
101+
# would provide http and https URLs for "example.com" and "sub1.example.com"
102+
# Please take care with this because it can cause great confusion.
103+
104+
# upload_dirs: "custom/upload/dir"
105+
#
106+
# upload_dirs:
107+
# - custom/upload/dir
108+
# - ../private
109+
#
110+
# would set the destination paths for ddev import-files to <docroot>/custom/upload/dir
111+
# When Mutagen is enabled this path is bind-mounted so that all the files
112+
# in the upload_dirs don't have to be synced into Mutagen.
113+
114+
# disable_upload_dirs_warning: false
115+
# If true, turns off the normal warning that says
116+
# "You have Mutagen enabled and your 'php' project type doesn't have upload_dirs set"
117+
118+
# ddev_version_constraint: ""
119+
# Example:
120+
# ddev_version_constraint: ">= 1.22.4"
121+
# This will enforce that the running ddev version is within this constraint.
122+
# See https://github.com/Masterminds/semver#checking-version-constraints for
123+
# supported constraint formats
124+
125+
# working_dir:
126+
# web: /var/www/html
127+
# db: /home
128+
# would set the default working directory for the web and db services.
129+
# These values specify the destination directory for ddev ssh and the
130+
# directory in which commands passed into ddev exec are run.
131+
132+
# omit_containers: [db, ddev-ssh-agent]
133+
# Currently only these containers are supported. Some containers can also be
134+
# omitted globally in the ~/.ddev/global_config.yaml. Note that if you omit
135+
# the "db" container, several standard features of DDEV that access the
136+
# database container will be unusable. In the global configuration it is also
137+
# possible to omit ddev-router, but not here.
138+
139+
# performance_mode: "global"
140+
# DDEV offers performance optimization strategies to improve the filesystem
141+
# performance depending on your host system. Should be configured globally.
142+
#
143+
# If set, will override the global config. Possible values are:
144+
# - "global": uses the value from the global config.
145+
# - "none": disables performance optimization for this project.
146+
# - "mutagen": enables Mutagen for this project.
147+
# - "nfs": enables NFS for this project.
148+
#
149+
# See https://ddev.readthedocs.io/en/stable/users/install/performance/#nfs
150+
# See https://ddev.readthedocs.io/en/stable/users/install/performance/#mutagen
151+
152+
# fail_on_hook_fail: False
153+
# Decide whether 'ddev start' should be interrupted by a failing hook
154+
155+
# host_https_port: "59002"
156+
# The host port binding for https can be explicitly specified. It is
157+
# dynamic unless otherwise specified.
158+
# This is not used by most people, most people use the *router* instead
159+
# of the localhost port.
160+
161+
# host_webserver_port: "59001"
162+
# The host port binding for the ddev-webserver can be explicitly specified. It is
163+
# dynamic unless otherwise specified.
164+
# This is not used by most people, most people use the *router* instead
165+
# of the localhost port.
166+
167+
# host_db_port: "59002"
168+
# The host port binding for the ddev-dbserver can be explicitly specified. It is dynamic
169+
# unless explicitly specified.
170+
171+
# mailpit_http_port: "8025"
172+
# mailpit_https_port: "8026"
173+
# The Mailpit ports can be changed from the default 8025 and 8026
174+
175+
# host_mailpit_port: "8025"
176+
# The mailpit port is not normally bound on the host at all, instead being routed
177+
# through ddev-router, but it can be bound directly to localhost if specified here.
178+
179+
# webimage_extra_packages: [php7.4-tidy, php-bcmath]
180+
# Extra Debian packages that are needed in the webimage can be added here
181+
182+
# dbimage_extra_packages: [telnet,netcat]
183+
# Extra Debian packages that are needed in the dbimage can be added here
184+
185+
# use_dns_when_possible: true
186+
# If the host has internet access and the domain configured can
187+
# successfully be looked up, DNS will be used for hostname resolution
188+
# instead of editing /etc/hosts
189+
# Defaults to true
190+
191+
# project_tld: ddev.site
192+
# The top-level domain used for project URLs
193+
# The default "ddev.site" allows DNS lookup via a wildcard
194+
# If you prefer you can change this to "ddev.local" to preserve
195+
# pre-v1.9 behavior.
196+
197+
# ngrok_args: --basic-auth username:pass1234
198+
# Provide extra flags to the "ngrok http" command, see
199+
# https://ngrok.com/docs/ngrok-agent/config or run "ngrok http -h"
200+
201+
# disable_settings_management: false
202+
# If true, DDEV will not create CMS-specific settings files like
203+
# Drupal's settings.php/settings.ddev.php or TYPO3's additional.php
204+
# In this case the user must provide all such settings.
205+
206+
# You can inject environment variables into the web container with:
207+
# web_environment:
208+
# - SOMEENV=somevalue
209+
# - SOMEOTHERENV=someothervalue
210+
211+
# no_project_mount: false
212+
# (Experimental) If true, DDEV will not mount the project into the web container;
213+
# the user is responsible for mounting it manually or via a script.
214+
# This is to enable experimentation with alternate file mounting strategies.
215+
# For advanced users only!
216+
217+
# bind_all_interfaces: false
218+
# If true, host ports will be bound on all network interfaces,
219+
# not the localhost interface only. This means that ports
220+
# will be available on the local network if the host firewall
221+
# allows it.
222+
223+
# default_container_timeout: 120
224+
# The default time that DDEV waits for all containers to become ready can be increased from
225+
# the default 120. This helps in importing huge databases, for example.
226+
227+
#web_extra_exposed_ports:
228+
#- name: nodejs
229+
# container_port: 3000
230+
# http_port: 2999
231+
# https_port: 3000
232+
#- name: something
233+
# container_port: 4000
234+
# https_port: 4000
235+
# http_port: 3999
236+
# Allows a set of extra ports to be exposed via ddev-router
237+
# Fill in all three fields even if you don’t intend to use the https_port!
238+
# If you don’t add https_port, then it defaults to 0 and ddev-router will fail to start.
239+
#
240+
# The port behavior on the ddev-webserver must be arranged separately, for example
241+
# using web_extra_daemons.
242+
# For example, with a web app on port 3000 inside the container, this config would
243+
# expose that web app on https://<project>.ddev.site:9999 and http://<project>.ddev.site:9998
244+
# web_extra_exposed_ports:
245+
# - name: myapp
246+
# container_port: 3000
247+
# http_port: 9998
248+
# https_port: 9999
249+
250+
#web_extra_daemons:
251+
#- name: "http-1"
252+
# command: "/var/www/html/node_modules/.bin/http-server -p 3000"
253+
# directory: /var/www/html
254+
#- name: "http-2"
255+
# command: "/var/www/html/node_modules/.bin/http-server /var/www/html/sub -p 3000"
256+
# directory: /var/www/html
257+
258+
# override_config: false
259+
# By default, config.*.yaml files are *merged* into the configuration
260+
# But this means that some things can't be overridden
261+
# For example, if you have 'use_dns_when_possible: true'' you can't override it with a merge
262+
# and you can't erase existing hooks or all environment variables.
263+
# However, with "override_config: true" in a particular config.*.yaml file,
264+
# 'use_dns_when_possible: false' can override the existing values, and
265+
# hooks:
266+
# post-start: []
267+
# or
268+
# web_environment: []
269+
# or
270+
# additional_hostnames: []
271+
# can have their intended affect. 'override_config' affects only behavior of the
272+
# config.*.yaml file it exists in.
273+
274+
# Many DDEV commands can be extended to run tasks before or after the
275+
# DDEV command is executed, for example "post-start", "post-import-db",
276+
# "pre-composer", "post-composer"
277+
# See https://ddev.readthedocs.io/en/stable/users/extend/custom-commands/ for more
278+
# information on the commands that can be extended and the tasks you can define
279+
# for them. Example:
280+
#hooks:
281+
# post-import-db:
282+
# - exec: drush sql:sanitize
283+
# - exec: drush updatedb
284+
# - exec: drush cache:rebuild

.docksal/addons/blt/blt

Lines changed: 0 additions & 7 deletions
This file was deleted.

.docksal/commands/init

Lines changed: 0 additions & 67 deletions
This file was deleted.

.docksal/commands/saml-init

Lines changed: 0 additions & 14 deletions
This file was deleted.

0 commit comments

Comments
 (0)