-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.lagoon.yml
39 lines (36 loc) · 889 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
28
29
30
31
32
33
34
35
36
37
38
39
docker-compose-yaml: docker-compose.yml
project: 2019-texascamp
tasks:
post-rollout:
- run:
name: drush updb
command: cd web && drush -y updb --cache-clear=0
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
environments:
prod:
routes:
- varnish:
- backend2019.texascamp.org
- frontend:
- "texascamp.org":
tls-acme: 'true'
insecure: Redirect
- "www.texascamp.org":
tls-acme: 'true'
insecure: Redirect
- "2019.texascamp.org":
tls-acme: 'true'
insecure: Redirect
cronjobs:
- name: drush cron
schedule: "H/15 * * * *"
command: drush cron
service: cli