https://chris-vermeulen.com/tag/laravel-in-kubernetes/ This series will show you how to go from laravel new to Laravel running in Kubernetes, including monitoring, logging, exposing and bunch more.
We will be using Laravel sail to run our application locally as a start, but will build our own Docker images as we go through.
./vendor/bin/sail composer require laravel/breeze --dev ./vendor/bin/sail php artisan breeze:install ./vendor/bin/sail npm install ./vendor/bin/sail npm run dev ./vendor/bin/sail php artisan migrate
We will build a bunch of Docker images and update our docker-compose to reflect a more production ready installation.