Choose your Sail Services
Customizing Your Laravel Application with Sail: Selecting and Configuring Services for Your Docker-Compose File
March 29, 2023
2k ViewsWhen generating a new Laravel application using Sail, you can utilize the with query string variable to select the services to be configured in your new application's docker-compose.yml file. The available services are:
-
mysql -
pgsql -
mariadb -
redis -
memcached -
meilisearch -
minio -
selenium -
mailpit
curl -s "https://laravel.build/example-app?with=mysql,redis" | bash
When you don't specify the services you want to set up, a default stack consisting of these services will be automatically configured for you:
-
mysql -
redis -
meilisearch -
mailpit -
selenium
Bonus
If you are interesting setting up Sail, checkout this article:
