We use cookies on this site to enhance your user experience
By clicking the Accept button, you agree to us doing so. More info on our cookie policy
We use cookies on this site to enhance your user experience
By clicking the Accept button, you agree to us doing so. More info on our cookie policy
Published: May 21, 2024 by C.S. Rhymes
Laravel offers a quick and easy command to create a new Laravel project that uses Laravel Sail using the Laravel build server. But what if you want to customise what services are installed by default?
To create a default Laravel build using Docker with Laravel Sail on macOS you can run the following command:
curl -s “https://laravel.build/example-app” | bash
This will create a new Laravel app in the folder called ‘example-app’ with the following services installed by default:
Check out the Laravel Documentation for more information and for how to get started with other operating systems.
The default list of services is probably fine for most use cases, but for one project I was building an API without any web interface. I wanted to streamline the services to speed up the initial set up and remove the services I wasn’t planning on using in the app.
In this case I didn’t need Meilisearch, Mailpit or Selenium in my app. I didn’t need Selenium as I had no interface to test with Laravel Dusk. It also didn’t have a search or the need to send any emails.
One way I found to manually remove the services, is to run the default script and then before you run sail up, then manually edit the docker-composer.yml file, removing the services you don’t need. However, this means you have still downloaded docker images that you don’t need, taking time and taking up storage space on your machine.
We can modify the default script by adding a with query parameter with a comma separated list of the services we need.
From our example above we only want MySQL and Redis to be setup so we can achieve this by using the following script.
curl -s “https://laravel.build/example-app?with=mysql,redis” | bash
Now when we open up our docker-compose.yml file we can see our PHP container (laravel.test), along with MySQL and Redis. The other services are no longer there as desired.
We can also add additional services by adding them to the with query parameter comma separated list. For example, the below script will add Memcached to the default services installed.
curl -s “https://laravel.build/example-app?with=mysql,redis,meilisearch,mailpit,selenium,memcached” | bash
If you want to add an additional service after you have run the script, such as Mailpit to preview emails, then you can use the sail:add
artisan command from your project root to add a service.
php artisan sail:add
This will provide a list of available services to choose from. Select from the list and it will add it for you.
I took a look at the Laravel sail server repo in GitHub to figure out how to customise the services installed. It allows you to set the ‘with’ and the ‘php’ query parameters to define the services and the php version required.
If you do provide a with query parameter then it will use that otherwise it defaults to mysql,redis,meilisearch,mailpit,selenium
.
It also validates the list and ensures that the service you specify is within the list of available services. For example, if you try to add nginx
to the list of services then it will return a validation error message.
curl -s "https://laravel.build/test-build?with=mysql,redis,nginx" | bash
bash: line 1: syntax error near unexpected token `('
bash: line 1: `Invalid service name. Please provide one or more of the supported services (mysql, pgsql, mariadb, redis, memcached, meilisearch, typesense, minio, mailpit, selenium, soketi) or "none".'
Share
Latest Posts
I have seen a few posts on Threads recently asking what software people use to format their books. This is one option out of many, but I thought I would share my current workflow to give authors an insight into the pros and cons.
There are lots of possible hosting solutions available for Laravel, from Forge, to Vapor to the new Laravel Cloud. I’ll start out by saying that these other solutions are much easier to get up and running than beanstalk, but I thought I’d share some of the “fun” I had getting it up and running.
I recently had to write a test for a React component that opened a new browser window. To open the new window I made use of window.open() in my code. This made the component easy to write, but I had to think a bit differently about how to write the test for this.
Unlooked for Tales - a collection of short stories
By C.S. Rhymes
Free on Apple Books and Google Play Books
Nigel's Intranet Adventure
By C.S. Rhymes
From £0.99 or read for free on Kindle Unlimited!