-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.lando.yml
More file actions
41 lines (34 loc) · 1.04 KB
/
.lando.yml
File metadata and controls
41 lines (34 loc) · 1.04 KB
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
# Change this name to something that makes sense for your project
name: drupalau
# Use the recipe appropriate for your application.
recipe: drupal8
compose:
- scripts/lando/docker-compose-extra.yml
config:
via: nginx
webroot: web
drush: composer
php: 7.1
database: mariadb:10.0
proxy:
nginx:
- drupal-org-au.lndo.site
services:
sql:
type: mariadb:10.1
creds:
user: drupal
password: drupal
database: drupal
portforward: 3307
appserver:
run:
- "mkdir -p /var/www/.platformsh && mkdir -p /var/www/.platformsh/bin"
- "curl -fsSL -o /var/www/.platformsh/bin/platform https://github.com/platformsh/platformsh-cli/releases/download/v3.33.6/platform.phar"
- "chmod ug+x /var/www/.platformsh/bin/platform"
- "cd $LANDO_MOUNT && composer install"
xdebug: true
overrides:
services:
environment:
BEHAT_PARAMS: '{"extensions" : {"Behat\\MinkExtension" : {"base_url" : "http://nginx/"}, "Drupal\\DrupalExtension" : {"drush" : { "root": "/app/web" }}}}'