-
Notifications
You must be signed in to change notification settings - Fork 2
/
.lando.yml
48 lines (48 loc) · 1.23 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
# lando rebuild -y
# lando composer install
# lando php artisan key:generate
# lando php artisan migrate
# lando php -i | grep upload_max_filesize
# lando ssh --service appserver --user root --command "cat /etc/passwd"
# lando conteiner location
# /path/to/my/app => /app
# $HOME => /user
# https://laravel.lndo.site
name: seuprojeto
recipe: lamp
config:
# php: '7.4'
# php: '8.3'
php: '8.2'
composer_version: 2-latest
webroot: public
xdebug: true
services:
appserver:
run_as_root:
- ln -snf /usr/share/zoneinfo/America/Sao_Paulo /etc/localtime
- echo "America/Sao_Paulo" > /etc/timezone
type: php:custom
overrides:
# image: lando/php:7.4-custom
# image: lando/php:8.3
image: lando/php:8.2
build:
context: ./
dockerfile: Dockerfile.custom
ports:
- "80"
config:
# Override php settings
php: php.ini
database:
# type: mysql:5.7
type: mysql:8.0
creds:
user: seuprojeto
password: seuprojeto
database: seuprojeto
# Por conta do uso de senha única o endereço dos projetos fica fixo em laravel.lndo.site, dessa forma para desenvolvimento tem-se um único oauth consumidor cadastrado.
proxy:
appserver:
- laravel.lndo.site