Pre-configured Lando recipes for rapid local development with popular CMS platforms.
- Lando 3+
- Docker Desktop
- PHP 8 with Xdebug support
- MySQL 5.7/8.0 database
- phpMyAdmin for database management
- MailHog for email testing
- Apache web server
- Composer 2 latest
- Custom tooling commands per platform
| Platform | Recipe | Description |
|---|---|---|
| Drupal | drupal/ |
Drupal 9+ development |
| Joomla | joomla/ |
Joomla 3/4 development |
| WordPress | wordpress/ |
WordPress development |
| Laravel | laravel/ |
Laravel framework |
| LAMP | lamp/ |
Generic LAMP stack |
-
Choose a recipe and copy its files to your project directory:
cp -r joomla/* /path/to/your/project/ -
Customize the configuration:
- Edit
.lando.yml - Replace
<NEW-CONTAINER-NAME>with your project name
- Edit
-
Start your environment:
lando start
# Start the environment
lando start
# Stop the environment
lando stop
# Restart services
lando restart
# Rebuild from scratch
lando rebuild
# Destroy environment
lando destroy
# Access MySQL CLI
lando mysqlAll recipes use consistent database settings:
- Host:
database - User:
{project-name}db - Password:
{project-name}db - Database:
{project-name}db - Port:
3306
After running lando start, access your services at:
- Application:
http://localhost:8080orhttps://{project-name}.lndo.site - phpMyAdmin:
http://phpmyadmin.lndo.site - MailHog:
http://mailhog.lndo.site
# Install latest Joomla
lando install
# Apply development configuration
lando dev-config
# Install extensions
lando install-extension
# Restore Akeeba backups
lando kick-restore
lando unite-restore
lando unite-restore-s3
# Install Patch Tester
lando install-patchtester# Install WordPress with WP-CLI
lando install# Laravel installer is pre-configured
# Redis cache service includedFor HTTPS support, trust the Lando CA:
# Trust Lando's SSL certificate
lando --help- Port conflicts: Change port mappings in
.lando.yml - Permission issues: Ensure Docker has proper permissions
- Service not starting: Run
lando logsto check errors
Contributions welcome! Please read the contribution guidelines before submitting PRs.
MIT License - Copyright (c) 2012-2025 Extly, CB