Questions tagged [lando]

Lando is a free, open source, cross-platform, local development environment and DevOps tool built on Docker container technology.

Lando is a free, open source, cross-platform, local development environment and DevOps tool built on Docker container technology and developed by Tandem. Designed to work with most major languages, frameworks and services, Lando provides an easy way for developers of all types to specify simple or complex requirements for their projects, and then quickly get to work on them. Think of it as your local development's dependency management and automation tool. It can even be installed right beside an old Kalabox installation with no interference, or used as a complete upgrade-replacement.

87 questions
0
votes
0 answers

Should I use both .dockerignore and Lando's "excludes" parameter?

In a Lando setup my project folder looks like this: .lando.yml lando/ Dockerfile .dockerignore // ... more config folders htdocs/ vendor/ node_modules/ var/ cache/ In my .dockerignore I have this #…
Julesezaar
  • 2,658
  • 1
  • 21
  • 21
0
votes
1 answer

Lando recipe don't create php.ini file

lando.yml create a folder instead a file php.ini in wordpress recipe This is my code: name: projName recipe: wordpress config: php: "8.0" webroot: . via: nginx xdebug: true config: php: config/php.ini it returns a php.ini directory…
ASC
  • 23
  • 2
0
votes
1 answer

Basic Laravel feature test running within Lando fails on get('/')

I am attempting to run the feature tests in a Laravel application which is running within a local Lando environment. The environment is accessible via https://catalog.lndo.site. If I attempt to run the example test: class ExampleTest extends…
Chris Rockwell
  • 1,688
  • 2
  • 21
  • 36
0
votes
1 answer

how to install lando and add a plugin phpmyadmin

I want to add phpmyadmin in lando as a plugin but facing this error
0
votes
2 answers

Lando pull from pantheon multidev not working

I have installed lando and docker-ce, cloned project from Pantheon and trying to lando pull --database=dev --files=dev --code=dev after I choose Pantheon account with valid machine key and see this log Attempting to login via terminus... [notice]…
Sizuji
  • 868
  • 2
  • 9
  • 26
0
votes
2 answers

Ubutu 20.04: lando db-import data.sql error, 'No such file or directory'

I am on Ubuntu 20.04 and lando 3.6.1. I have a WordPress site setup with lando. Everything is fine except that I am unable to import the SQL dump using the following command: $ lando db-import ucoh-data.sql The dump is placed at the root of the…
Subrata Sarkar
  • 2,975
  • 6
  • 45
  • 85
0
votes
0 answers

MySQL import error Lando - exceeded the timeout of 14400 seconds

I am getting below error while importing large database through lando. The process "mysql --defaults-file=/tmp/drush_w1wair --database=drupal8 --host=database --port=3306 -A" exceeded the timeout of 14400 seconds. Please help to configure maximum…
Syam Mohan M P
  • 1,047
  • 8
  • 23
0
votes
3 answers

How to change the php version in Lando 8.1.2

This is my first question. I'm a beginner. I'm working in a wordpress project with sage. When I try to run the template, there is a mistake: The composer version is ok, but Lando version is php7.4 and I need the php8.1 version. I've tried to change…
Rosana
  • 1
  • 1
  • 1
0
votes
1 answer

Why is lando often giving me "Install of vendor/package failed?

I'm on Mac and often getting a Install of vendor/package failed message. This can be just drupal/core or several drupal modules. lando composer install output includes some of these lines: - Installing vardot/varbase (9.0.8): Extracting archive …
Tolga Ozses
  • 348
  • 4
  • 26
0
votes
0 answers

Lando links to local site are red

working on an existing project that was working on my Win 10 machine. and continues to work on a Colleagues mac calling lando start -vvv launches docker, starts the containers but where it check the urls for the site lando prints checking to see…
0
votes
0 answers

Access denied to database while calling docker from command line

I took responsibility for a hughe project, a part of the project contains cronjobs to crawl data from a certain provider. The project is written in Yii2 and it runs in Lando enviroment with docker desktop, on a windows10 machine with wsl2. While…
Rosi
  • 1
0
votes
1 answer

Xdebug logging connection errors when it's not supposed to be running

WordPress site built using a Lando development environment. Debugging in WordPress is enabled, as is debugging to a log file. In VS Code I have the following launch.json: { "version": "0.2.0", "configurations": [ { …
gurtfrobe
  • 316
  • 6
  • 17
0
votes
1 answer

How to get Lando to run it's own scripts

I'm new to Lando, and am surprised at the way it works. I'm following the example at https://docs.lando.dev/wordpress/getting-started.html, and got a WP site up and running. But I've been reading docs and trying a few things, and can't find a way to…
BlakeyUK
  • 83
  • 1
  • 9
0
votes
1 answer

405 Not allowed error on BAN or PURGE requests against varnish

I'm trying to set up varnish as part of my lando (docker)-based development installation. It consists of 2 containers: appserver, running Apache + PHP-FPM varnish Somehow, I fail to set up a correct VCL configuration file, resulting in fails like…
0
votes
1 answer

Drupal multisite databases not being displayed in PHPMyadmin

Created Drupal 9 multisite with 2 subsites successfully Created a separate database for each site Logged in to PHPMyadmin databases for 2 subsites are not displayed there. Databases are present in MariaDB. However, a database for the main site is…