Redis – Laravel sail endpoints take a long time
I have an api which we update to laravel 8 to be able to use laravel sail, I mean to have it in docker, but when using the api endpoints, when it is up in docker, they take an average…
I have an api which we update to laravel 8 to be able to use laravel sail, I mean to have it in docker, but when using the api endpoints, when it is up in docker, they take an average…
I'm very new to the docker technology. What i'm trying to do, is install the PHP extensions sqlsrv and pdo_sqlsrv from PECL repo. Accordingly to this tutorial: https://learn.microsoft.com/en-us/sql/connect/odbc/linux-mac/installing-the-microsoft-odbc-driver-for-sql-server?view=sql-server-ver15 Before i get data from this repo i install the following php…
I have started to play with my first Laravel project on a MacOS. I am using Laravel Sail for running the project inside a container and everything seems to work except the debugging part. Versions used: Laravel 8.66, PHP 8.0.12,…
I'm developing a multi-tenant app first time by using Laravel 8, Tenancy For Laravel on Docker and WSL2. My issue occures when I try to create a tenant. I want to create a new database for each tenant, but creating…
I've recently started using Laravel Sail and I've noticed that it uses the built-in PHP server and not something like Apache or Nginx. So, I assume that this way is not a good way to deploy it on Laravel Vapor.…
My application was running smoothly until i installed laravel octane following the documentation and then localhost has refused to work. I have my installation running on the docker installation for windows. Below is my docker-compose.yml file # For more information:…
I want to add SQL Driver to Docker file, I copied the file from vendor/laravel/runtimes/8.0/Dockerfile to root project and modified for add the dependencies for SQL Server Driver. This is my Dockerfile in my root project: FROM ubuntu:20.04 LABEL maintainer="Taylor…
I have a laravel 8 project created with composer. Then I added laravel sail by composer require laravel/sail and then executed command php artisan sail:install. After sail up command, only mysql container was created and everything works well. But now…
I installed docker and downloaded an ubuntu distro to run with laravel sail,planing to use swoole php,and made it default,also made wsl version to 2 with docker-compose.yml ready from laravel sail docker-compose.yml: but every time I try to run the…
I just set up a laravel project with laravel sail and for some reason during build process it doesn't create the given database and user. I am quite confused as to why because I feel like I've configured everything right.…