forked from kyleconyers/democraticLi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.lando.yml
37 lines (37 loc) · 921 Bytes
/
.lando.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
name: democraticli
recipe: drupal9
config:
webroot: web
services:
appserver:
xdebug: "debug,develop"
build_as_root:
- apt update
- apt install -y vim
- apt install -y mycli
overrides:
environment:
DRUSH_OPTIONS_URI: "https://democraticli.lndo.site"
LC_ALL: C.UTF-8
LANG: C.UTF-8
solr:
type: solr:8
core: democraticli
portforward: true
config:
dir: config/solr
tooling:
mycli:
service: appserver
description: mycli client
cmd: mycli mysql://drupal8:drupal8@database/drupal8
xdon:
service: appserver
description: Enable xdebug for apache.
cmd: "docker-php-ext-enable xdebug && /etc/init.d/apache2 reload"
user: root
xdoff:
service: appserver
description: Disable xdebug for apache.
cmd: "rm /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini && /etc/init.d/apache2 reload"
user: root