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
40
votes
5 answers

Can I roll back to a previous version of Docker Desktop?

On Mac, I'm running Lando inside Docker. I'm on Lando v3.0.1 and was running Docker Desktop v2.2.0.5 successfully. Docker released stable an update v.2.3.0.3 and I installed it. After that I attempted to run Lando, but got a warning message stating…
user3891775
  • 1,121
  • 2
  • 9
  • 13
7
votes
1 answer

Create a symlink inside a Lando instance

I'm running an instance of Wordpress locally (on Ubuntu) using an app called Lando (built on Docker). I'm developing a custom Wordpress plugin that I'd like to symlink into Wordpress within Lando but it's not working. The symlink is there, and…
commadelimited
  • 5,656
  • 6
  • 41
  • 77
6
votes
1 answer

Lando has trouble accessing a URL from a non-Lando app on my system

My company has software that runs within Docker on my system, but is not using Lando. This software is serving some data via the URL: http://local.relay.cool:8081/clicks-bff/api/ads/ I can hit this URL in an anonymous browser, cURL it from the…
commadelimited
  • 5,656
  • 6
  • 41
  • 77
6
votes
4 answers

How to add entries to /etc/hosts in lando appserver?

I tried this (which should not return anything): $ lando ssh -s appserver -u root -c "echo \"10.0.0.132 pds\" >> /etc/hosts" 10.0.0.132 pds >> /etc/hosts $ lando ssh -s appserver -u root -c "cat /etc/hosts" 127.0.0.1 localhost ::1 …
ñull
  • 504
  • 4
  • 17
3
votes
1 answer

Cannot find Lando apache default config files

I'm using Lando to create a local development server for a Laravel project with the recipe below in .lando.yml name: projectname recipe: laravel config: php: '7.3' composer_version: '2.0.7' via: apache:2.4 webroot: . database: mysql:5.7 …
pucca garu
  • 97
  • 9
3
votes
0 answers

Atempting to run Laravel Dusk tests With Lando

I have a Laravel 8 application running with Lando and I'm trying to figure out why when I have the following setup of the Lando container its not running my Dusk tests. I have provided as much information about my setup as I believe will assist in…
3
votes
0 answers

PHP Error while loading shared libraries: libssl.so.1.0.0: cannot open shared object file: No such file or directory

I am working on a site using Lando and Pantheon and have recently been running into this error: php: error while loading shared libraries: libssl.so.1.0.0: cannot open shared object file: No such file or directory I don't know what caused it to…
Ben Cavenagh
  • 608
  • 1
  • 6
  • 22
3
votes
2 answers

lando start spits out "ERROR: for proxy Cannot start service proxy: network"

lando start There is an update available!!! Install it to get the latest and greatest Updating helps us provide the best support https://github.com/lando/lando/releases/tag/v3.0.0-beta.39 Creating network…
Jonathan
  • 6,741
  • 7
  • 52
  • 69
2
votes
1 answer

Lando wtih ParcelJS: exposing port

I'm trying to use ParcelJS with Lando and there's one problem if you want HMR to work. You need to expose a port and that seems to be much harder than it should be with Lando. :( So I know I need to do this for my ParcelJS watch command: parcel…
Trevor
  • 2,511
  • 1
  • 14
  • 25
2
votes
1 answer

`lando artisan` command returns a weird error

If you've worked with Laravel and Lando together, you probably know that Lando gives you its own artisan shortcut. So instead of having to run lando php artisan ..., you can run lando artisan .... However, when I do that, I get this error: Could not…
JSn1nj4
  • 87
  • 12
2
votes
1 answer

Can I use one lando file to for multiple projects?

I have a couple of github repos that I want to configure and start using one lando file ? Do I have to use multiple lando files or can it be just one.
mosaad
  • 2,276
  • 5
  • 27
  • 49
2
votes
1 answer

Container not connected to the network lando_bridge_network

I'm creating a custom service in Lando for a Drupal 8 project. This is my first time really trying to add a service through the docker compose method and I'm not sure what I'm doing, even after looking at the Lando docs. My .lando.yml file is below.…
UnsettlingTrend
  • 452
  • 1
  • 5
  • 20
1
vote
1 answer

Lando tooling command syntax

I'm trying to set up a some tooling in my .lando.yml file to rapidly accomplish several tasks I do on every fresh Wordpress install. Everything's working great except for if I try to use the [--extra-php] option in the wp-cli and syntax as…
StudioAl
  • 192
  • 7
1
vote
0 answers

nginx 504 Gateway Time-out: Adding custom config to laravel recipe to resolve

I'm using lando for development and it's working fine until I run this code: Route::get('/test', function(){ set_time_limit(600); for($i=0; $i<250; $i++){ echo $i; sleep(1); } }); it gave me this error: 504 Gateway…
habib
  • 1,454
  • 17
  • 31
1
vote
1 answer

laravel 9 + lando = no livereload and no sourceMapping

I just create a new Laravel 9 project and I'm using lando. I have followed instructions from this : https://sinnbeck.dev/posts/getting-vite-and-laravel-to-work-with-lando Currently, the site is working, I can update php, css or js code. But, there…
CrunchyArtie
  • 417
  • 5
  • 18
1
2 3 4 5 6