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
1 answer

Cannot get webpack --watch or dev server to work using Lando to run a local Drupal environment

I've scoured the internet and have bits and pieces but nothing is coming together for me. I have a local Drupal environment running with Lando. I've successfully installed and configured webpack. Everything is working except when I try to watch or…
Angela
  • 11
  • 3
0
votes
1 answer

How to reset/unset Lando composer github-oauth in window 10

I have set the auth token in Lando composer with command “lando composer config --global --auth github-oauth.github.com ghp_4Gfo*******JG3”. but it's invalid,when I type “Lando composer install” or any other Lando Composer command, it types…
Raofei
  • 1
0
votes
0 answers

I am getting listen EADDRINUSE: address already in use with an ExpressJS application in Lando via Docker for Windows in WSL Ubuntu 20.04

I'm trying to start building an Express/Node/React application on Windows 10 using WSL2, Docker Desktop, and Lando (installed via WSL2) but I'm having issues getting the basic Express portion to run. Based on Google searches it seems to be most…
CR47
  • 843
  • 4
  • 12
  • 33
0
votes
1 answer

Mount folder into webroot with Lando

So I have 2 folders next to each other, "cms" and "project-1". The "project-1" folder contains the lando file. I'm trying to mount the cms folder inside the webroot in order to create a proxy for it. name: project-1 recipe: lamp config: webroot:…
Matthias
  • 141
  • 3
  • 11
0
votes
1 answer

Which WordPress files and folders can safley be excluded when optimizing Lando performance?

I am using Lando for local WordPress development. But because it relies on Docker the performance isn't great out of the box. To solve that problem the Lando devs say we can exclude files and folders from Docker to speed things up. So far I have…
TinyTiger
  • 1,801
  • 7
  • 47
  • 92
0
votes
1 answer

Two instances of the same project without sharing database data in Lando

I’m working on a Drupal project hosted on platform.sh. I started to work locally with Lando but I messed things up a bit and I tried to create a second local Lando build for the same project to try some changes, keeping the fist project in it’s…
laurent
  • 505
  • 7
  • 16
0
votes
1 answer

Installing GMP on docker using lando

I'm trying to spin up a laravel instance via lando using php8. I also need to install the php GMP module... I'm very new to docker and lando. Now it seems as though the php instance that lando uses does not have GMP pre-setup I found a post…
Kieran
  • 752
  • 1
  • 10
  • 24
0
votes
0 answers

Running Lando on PC for Drupal Environment Composer errors

I'm stuck trying to install a Drupal Environment on Lando using a PC under WSL. When running composer install, I get the following errors listed below. Does anyone have experience with these errors as it's preventing me from running…
0
votes
2 answers

Is there a command similar to docker exec in lando?

We are using our develpment environment in a lando and non lando context alike. Is there a way to trigger a shell script from outside lando similar to docker exec ? lando exec does not work obvisously and it is also not part of the standard…
Andreas
  • 1,691
  • 1
  • 15
  • 34
0
votes
1 answer

Remote git repo or archive ERROR: Cannot read property 'split' of undefined lando

I'm setting up Lando with Drupal and have a problem with remote git-repo or archive ERROR ==> Cannot read property 'split' of undefined. Can someone help please ? PS C:\Users\USER> cd .. PS C:\Users> cd .. PS C:\> cd local PS C:\local> lando…
0
votes
2 answers

Upgraded Drush 8 to 9 Site Alias Not Working

I moved from using Docksal to Acquia ADS (Lando) which automatically upgraded my Drush from 8 to 9. My local site works fine but I can't get Drush 9 to "see" my Drupal 8 site. The aliases seem to have been created and added to the drush/sites folder…
r00t
  • 111
  • 1
  • 5
0
votes
1 answer

MySQL with docker-compose ports doesn't work with network

I am not sure if this is a bug, or a feature. But I have been running this docker-compose setup for my local development databases several months now and since I have updated Docker and Lando it stopped working. As you can see I use it for some php…
Florian
  • 725
  • 6
  • 27
0
votes
1 answer

Lando adminer ERR_INVALID_REDIRECT on login submit

I am using Lando to create an environment that includes Adminer as a service. When I go into Adminer and try to login, I get the following page after pressing the 'Login' button: This page isn’t working adminer.myproject.lndo.site sent an invalid…
Web Assistant
  • 721
  • 4
  • 9
0
votes
3 answers

Drupal8 installation with Lando

I am having this error when I try to install drupal8 using Lando. Warning: require(/app/vendor/composer/../ircmaxell/password-compat/lib/password.php): failed to open stream: No such file or directory in …
Batman
  • 1
  • 4
0
votes
1 answer

Is there a way to switch off Xdebug on lando site for some requests

When I am running my lando site in local dev, it is painfully slow. I believe this is because lando uses the XDEBUG_SESSION cookie on every single request, even requests that have nothing to do with what i am debugging. I have the xdebug chrome…