-
Notifications
You must be signed in to change notification settings - Fork 1
/
.lando.yml
65 lines (60 loc) · 1.43 KB
/
.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# Lando <https://lando.dev> development environment
# Usage:
# `lando start`: To start it up
# `lando stop`: To stop it and resume latter
# `lando destroy && rm -rf wp-www`: If you want to start again
# cSpell:ignore appserver lndo portforward hogfrom
name: wordpress-plugin-starter
recipe: wordpress
config:
via: nginx
webroot: wp-www # cspell:disable-line
database: mariadb
xdebug: true
php: "8.0"
composer_version: "2"
services:
appserver:
run:
- bash /app/bin/lando-wordpress-provision.sh
overrides:
volumes:
- ./:/app/wp-www/wp-content/plugins/wordpress-plugin-starter
pma:
ssl: true
type: phpmyadmin
mailhog:
ssl: true
type: mailhog
hogfrom:
- appserver
redis:
type: redis
portforward: false
node:
type: node:16
dir: /app/wp-www/wp-content/plugins/wordpress-plugin-starter
proxy:
appserver_nginx:
- wordpress-plugin-starter.lndo.site
pma:
- wordpress-plugin-starter-pma.lndo.site
mailhog:
- wordpress-plugin-starter-mail.lndo.site
tooling:
wp:
service: appserver
cmd: /usr/local/bin/wp
dir: /app/wp-www
composer:
service: appserver
cmd: composer
dir: /app/wp-www/wp-content/plugins/wordpress-plugin-starter
node:
service: node
cmd: node
dir: /app/wp-www/wp-content/plugins/wordpress-plugin-starter
npm:
service: node
cmd: npm
dir: /app/wp-www/wp-content/plugins/wordpress-plugins-starter