docker-example-drupal/build.yaml

45 lines
627 B
YAML
Raw Normal View History

2023-01-21 15:50:45 +00:00
name: docker-example-drupal
language: php
2023-07-22 09:47:24 +00:00
type: drupal
2023-01-21 15:50:45 +00:00
web:
type: nginx
database:
type: mariadb
version: 10
php:
2023-12-16 23:21:38 +00:00
version: 8.2-fpm-bullseye
2023-01-21 15:50:45 +00:00
phpcs:
2023-04-23 19:00:35 +00:00
paths:
- web/modules/custom
standards:
- Drupal
- DrupalPractice
2023-01-21 15:50:45 +00:00
phpstan:
level: max
2023-04-21 11:42:01 +00:00
paths:
- web/modules/custom
2023-01-21 15:50:45 +00:00
2023-03-30 22:19:32 +00:00
drupal:
docroot: web
2023-01-21 15:50:45 +00:00
docker-compose:
services:
2023-05-09 19:00:48 +00:00
- database
- php
- web
2023-01-21 15:50:45 +00:00
dockerfile:
stages:
build:
commands:
- composer validate
- composer install
experimental:
2023-04-21 10:57:36 +00:00
createGitHubActionsConfiguration: true
runGitHooksBeforePush: true
useNewDatabaseCredentials: true