-
Notifications
You must be signed in to change notification settings - Fork 0
/
.lagoon.yml
56 lines (51 loc) · 1.6 KB
/
.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
docker-compose-yaml: docker-compose.yml
project: demo-tag1-drupal
tasks:
# pre-rollout:
# - run:
# name: drush sql-dump
# command: mkdir -p /app/web/sites/default/files/private/ && drush sql-dump --ordered-dump --gzip --result-file=/app/web/sites/default/files/private/pre-deploy-dump.sql.gz || true
# service: cli
post-rollout:
- run:
name: IF no Drupal installed and we are not main branch, sync from main branch
command: |
if tables=$(drush sqlq 'show tables;') && [ -z "$tables" ] && [[ "$LAGOON_GIT_BRANCH" != "main" ]]; then
# no drupal installed, sync DB from main branch
drush -y sql-sync @lagoon.demo-tag1-drupal-main @self
drush -y rsync @lagoon.demo-tag1-drupal-main:%files @self:%files
drush -y cr
fi
service: cli
shell: bash
- run:
name: drush cim
command: drush -y cim
service: cli
- run:
name: drush updb
command: drush -y updb
service: cli
- run:
name: drush cr
command: drush -y cr
service: cli
environments:
main:
# routes:
cronjobs:
- name: drush cron
schedule: "*/15 * * * *"
command: drush cron
service: cli
lagoon-sync:
mariadb:
config:
hostname: "${MARIADB_HOST:-mariadb}"
username: "${MARIADB_USERNAME:-drupal}"
password: "${MARIADB_PASSWORD:-drupal}"
port: "${MARIADB_PORT:-3306}"
database: "${MARIADB_DATABASE:-drupal}"
files:
config:
sync-directory: "/app/web/sites/default/files"