The post has been translated automatically. Original language: English
Docker is a platform for developing, delivering, and running applications using containers. Containers allow you to package an application with its dependencies and run it in any environment.
Lando is a local development tool that uses Docker to create isolated development environments. It simplifies the setup and project management processes.
After installing Docker and Lando, you can start configuring your project using the following commands:
- lando init: Initialization of a new Lando project. This command will create a configuration file.lando.yml, which will contain all the settings of your project.lando init
- lando start: The launch of the Lando development environment. This command will launch the Docker containers required for your project.lando start
- lando stop: Stopping the Lando development environment.lando stop
- lando destroy: The removal of the Lando development environment and all related containers.lando destroy
composer create-project laravel/laravel:^11.0 example-app
Docker is a platform for developing, delivering, and running applications using containers. Containers allow you to package an application with its dependencies and run it in any environment.
Lando is a local development tool that uses Docker to create isolated development environments. It simplifies the setup and project management processes.
After installing Docker and Lando, you can start configuring your project using the following commands:
- lando init: Initialization of a new Lando project. This command will create a configuration file.lando.yml, which will contain all the settings of your project.lando init
- lando start: The launch of the Lando development environment. This command will launch the Docker containers required for your project.lando start
- lando stop: Stopping the Lando development environment.lando stop
- lando destroy: The removal of the Lando development environment and all related containers.lando destroy
composer create-project laravel/laravel:^11.0 example-app