docker-example-drupal/build.yaml
Oliver Davies f4aa3d8a68 Upgrade to Drupal 11
- Update to PHP 8.3.
- Remove the examples module.
- Upgrade Drush to version 13.
- Upgrade Drupal to 11.
2024-08-04 13:06:06 +01:00

45 lines
627 B
YAML

name: docker-example-drupal
language: php
type: drupal
web:
type: nginx
database:
type: mariadb
version: 10
php:
version: 8.3-fpm-bullseye
phpcs:
paths:
- web/modules/custom
standards:
- Drupal
- DrupalPractice
phpstan:
level: max
paths:
- web/modules/custom
drupal:
docroot: web
docker-compose:
services:
- database
- php
- web
dockerfile:
stages:
build:
commands:
- composer validate
- composer install
experimental:
createGitHubActionsConfiguration: true
runGitHooksBeforePush: true
useNewDatabaseCredentials: true