-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.lagoon.yml
27 lines (25 loc) · 896 Bytes
/
.lagoon.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
docker-compose-yaml: docker-compose.yml
project: decoupled-drupal-example
tasks:
post-rollout:
# - run:
# name: env variables
# command: env
# service: cli
# - run:
# name: IF no Drupal installed drush si with no email sending
# command: |
# cd web
# if [[ $(drush core-status bootstrap --pipe) == "" ]]; then
# # no drupal installed, we install drupal from scratch
# drush si config_installer -y --account-name=admin --account-pass=admin install_configure_form.enable_update_status_module=NULL install_configure_form.enable_update_status_emails=NULL
# fi
# service: cli
# - run:
# name: drush cim
# command: cd web && drush -y cim
# service: cli
- run:
name: drush cr
command: cd web && drush -y cr
service: cli