Browse AI Field GuideForum Podcast
All ThreadsLeaderboard
  1. Discussions

    1. Popular This Week
    2. Popular All Time
    3. Solved
    4. Unsolved
    5. No Replies Yet

Aspex's avatar

What triggers my app - Logging happening non-stop

Hi! I'm wondering what is causing my Laravel error-log (in storage/app/logs) to fill in with issues, even though I don't even have docker (or any other webserver) up and running. The constant logging issue has already filled my total disk space in a test server environment with low diskspace. Same happens in Localhost. I've stripped out even all the schedulers from use in the

Aspex's avatar
Aspex's avatar Snapey2yrs agoLaravel
3
1
Last reply by Snapey 2yrs ago
gabrl_gomes's avatar

SQLSTATE[HY000] [1130] Host '192.168.32.6' is not allowed to connect to this MySQL server

Hey guys. I'm having problems with a laravel + docker project. I'm having this error and I don't know what happens. I've already modified the variables, I've started the project again but nothing helps and this error is still here. See my codes: docker-compose.yml: db mysql mysql: image: mysql:5.7.22 restart: unless-stopped environment: MYSQL_DATABASE:

gabrl_gomes's avatar
gabrl_gomes's avatar gabrl_gome...2yrs agoLaravel
0
1
nishatmamun's avatar

Multiple php version in composer

PHP requires a composer. But the issue is that whenever I run multiple versions of PHP in different projects on the same PC at the same time, it comes with an error because of the composer PHP version. As we know, Composer can only run with one PHP version at a time. Is there any alternate way to fix this issue without using Docker?

nishatmamun's avatar
nishatmamun's avatar Tray22yrs agoLaravel
3
1
Last reply by Tray2 2yrs ago
enadabuzaid's avatar

I have problem when istalled sail

I installed sail on existing project everything is okay but wen run sail up -d the mysql image stopped after three or four second and this logs for the image 2023-10-23 11:36:45 [Entrypoint] MySQL Docker Image 8.0.32-1.2.11-server 2023-10-23 11:36:45 [Entrypoint] Starting MySQL 8.0.32-1.2.11-server 2023-10-23 11:36:45 2023-10-23T08:36:45.887725Z 0 [Warning] [MY-011068] [Server

enadabuzaid's avatar
enadabuzaid's avatar JonathanAs...1yr agoDevOps
8
2
Last reply by JonathanAspeling 1yr ago
prokofiev's avatar

DI recursion

It so happened that I created two classes that have mutual dependencies. I can’t detect this in any way, so is there any way to catch such an error? The Docker container stops with status 255, and there are no logs - neither in the container nor in the framework's storage. How to reproduce? Just create two classes like that <?php namespace App\Services; class ClassOne {

prokofiev's avatar
prokofiev's avatar prokofiev2yrs agoLaravel
6
1
Last reply by prokofiev 2yrs ago
NameUnknown's avatar

Redis repeatedly saves the queue database (horizon) resulting in loss of pending jobs

When we used Redies for queued jobs we faced the following problem: Redis constantly overwrites the database almost every second. Here's the log: 30:C 21 Oct 2023 09:24:21.091 * DB saved on disk 30:C 21 Oct 2023 09:24:21.091 * Fork CoW for RDB: current 0 MB, peak 0 MB, average 0 MB 1:M 21 Oct 2023 09:24:21.189 * Background saving terminated with success 1:M 21 Oct 2023 09:25:22

NameUnknown's avatar
NameUnknown's avatar NameUnknow...2yrs agoLaravel
0
1
alons182's avatar

Github Actions Testing Fails when ValidationException is thrown inside a DB:Transaction

I have the following error in Github Actions Testing FAILED Tests\Feature\Cashier\TransactionsControllerTest > it currency of… Session is missing expected key [errors]. Failed asserting that false is true. The following exception occurred during the last request: PDOException: SQLSTATE[42000]: Syntax error or access violation: 1305 SAVEPOINT trans2 does not exist in

alons182's avatar
alons182's avatar alons1822yrs agoTesting
0
1
stratboy's avatar

How to change sail DB user and password?

Hi! It seems that with a sail installation is not so simple to change DB user and password. It always uses the sail/password defaults. By changing values in .env file, nothing happens, even after restarting or rebuilding the docker containers. So how to?

stratboy's avatar
stratboy's avatar SmereKa2yrs agoLaravel
6
1
Last reply by SmereKa 2yrs ago
warpig's avatar

blank page localhost

I'm trying to make a get request to show the homepage on localhost but in return I'm only seeing a blank page Route::get('/', [PostController::class, 'home'])->name('home'); i am trying to return my view: "blog". When I inspect the page source in firefox, the correct page with my code loads correctly but it is not showing the frontend. I've cleared the cache, rout

warpig's avatar
warpig's avatar warpig2yrs agoGeneral
1
1
Last reply by warpig 2yrs ago
stratboy's avatar

Can't connect to db

Hi, I'm running sail locally with docker. Latest Laravel version. I'm experiencing problems with database connection, using both Sequel Ace (Sequel Pro new fork) and Table Plus. I'm on macos 13.5.1. Laravel works (the staging website), so Laravel itself seems it can connet to the database. But I cannot connect with a client. Also, if I try for example a migration (sail artisan

stratboy's avatar
stratboy's avatar stratboy2yrs agoLaravel
9
1
Last reply by stratboy 2yrs ago
saad1912's avatar

sign up issue

i have deployed my laravel project on docker but when i tried to login it shows that "data is not in record" while when it tried to signup it shows an "id" issue that user unable to register. Kindly help.

saad1912's avatar
saad1912's avatar martinbean2yrs agoLaravel
1
1
Last reply by martinbean 2yrs ago
skicross's avatar

Inertia SSR build warnings

I'm new to Inertia but experienced in Laravel. Working on SSR app using Vue3 and Vite. While watch is running everything works as expected, no errors or warnings. As soon as I build app and start artisan command php artisan inertia:start-ssr app is working correctly but I see warnings from running artisan commands. TypeError: Cannot read properties of undefined (reading 'title

skicross's avatar
skicross's avatar skicross2yrs agoInertia
0
1
anonymouse703's avatar

Install of google/apiclient-services failed

If you are using docker in development and encountered error like this In Filesystem.php line 314: Could not delete /var/www/admin-backend/vendor/composer/0cbe9c29/googleapis -google-api-php-client-services-5088cb7/src/OnDemandScanning:

anonymouse703's avatar
anonymouse703's avatar anonymouse...2yrs agoLaravel
0
1
jjmaster's avatar

Issue deploying my APP into production in a VPS

Hello: I am developing an APP with the stack: VUE Intertia Laravel I have configured every part of the APP with Docker containers: NGINX PHP MySQL Artisan Composer NPM All with the help of this tutorial: https://laracasts.com/series/the-docker-tutorial I got the APP working in local. I have set up a VM with Debian and the APP is working in localhost. Now is the moment of ta

jjmaster's avatar
jjmaster's avatar jjmaster2yrs agoGeneral
0
1
mcload's avatar

Routes not working

I have my route files set up. I would like to use api routes and it was working previously, I don't know what caused it to go down. This is my api routes file. Route::middleware('auth:sanctum')->get('/user', function (Request $request) { return $request->user(); }); Route::post('/request-link', [RequestLinkController::class, '__invoke']); Route::post('/statusUpdates

mcload's avatar
mcload's avatar mcload2yrs agoLaravel
2
1
Last reply by mcload 2yrs ago
StanleyPeters's avatar

Preventing accidental refresh on test/stage db

After an embarrassing number of accidental refreshes of the test db during testing I was inspired to this solution from https://stackoverflow.com/questions/64096031/how-to-disable-laravel-php-unit-test-in-production. TestCase.php protected function setUp(): void { parent::setUp(); if (env('DB_HOST') !== 'local_db') { throw new \Exception( &qu

StanleyPeters's avatar
StanleyPeters's avatar tisuchi2yrs agoTesting
3
1
Last reply by tisuchi 2yrs ago
matthew230's avatar

New project install: Allowed memory size of 2147483648 bytes exhausted (tried to allocate 421768368 bytes)

I am new to Laravel, I have installed PHP and Laravel in a Docker container. From installation tutorials, I was expecting a Laravel Homepage, however I am getting a memory error. For avoidance of doubt, I have not adjusted any code. I've taken the PHP right up to 3GB, with the same result. Symfony \ Component \ ErrorHandler \ Error \ FatalError Allowed memory size of 2147483648

matthew230's avatar
matthew230's avatar nickrushun...2yrs agoLaravel
4
1
Last reply by nickrushuniq 2yrs ago
abkrim's avatar

Problem for configure pest In PhpStorm & Sail

I have several projects in which I already use PestPHP. I work with PhpStorm, and except for the warning that I always get about Composer v1, I already have it perfectly configured and I can launch the tests, individual or global) from 'run' Worse, when I have tried to configure a project that is a Laravel package, here I am no longer able, despite using the same method. When I

abkrim's avatar
abkrim's avatar abkrim2yrs agoTesting
2
1
Last reply by abkrim 2yrs ago
vungo's avatar

Laravel 10 not show error, only show Allowed memory size

Hello. I use laravel 10 with php 8.1.23. It not show error, only show Allowed memory size of 268435456 bytes exhausted (tried to allocate 34244503 bytes). Read more : https://flareapp.io/share/dmkbR9Y5. I checked my server memory, my memory_limit is 128M. i built laravel with docker. Thanks my composer.json "name": "laravel/laravel", "type"

vungo's avatar
vungo's avatar jlrdw2yrs agoLaravel
1
1
Last reply by jlrdw 2yrs ago
laranovice's avatar

How to expose sail image to external access (no 'sail share')

Hi, I want my sail instance to be accessible from my network, I tried the sail share but it's blocked by my organization VPN so I would "tell" something to docker to allow the 0.0.0.0 network I can't find any resource, is this possible and how?

laranovice's avatar
laranovice's avatar Cruorzy2yrs agoLaravel
1
1
Last reply by Cruorzy 2yrs ago
chkltlabs's avatar

My Service Provider is being ignored?

I wrote a custom service provider for an api service I am writing to access the Wix api. I have registered it in config/app.php, done the usual artisan config:clear and artisan cache:clear and composer dumpautoload, but when I call for resolve(Wix::class) or app(Wix::class), I get the following error: 1) Tests\Unit\Services\WixService\Resources\BlogTest::test_list_posts_live Il

chkltlabs's avatar
chkltlabs's avatar chkltlabs2yrs agoLaravel
2
1
Last reply by chkltlabs 2yrs ago
jkwyeung's avatar

Building SOAP Service in Laravel

Unfortunately I'm having to build a SOAP service as a component to what I have in Laravel. Trying to avoid it but don't have another option here. I'm having an issue where the SOAP server is not able to get the WSDL, although the URL works in the web browser. Using Laravel Sail and Docker and suspect it has something to do with the networking configuration although I'm not sure

jkwyeung's avatar
jkwyeung's avatar LaryAI2yrs agoLaravel
1
1
Last reply by LaryAI 2yrs ago
codeone's avatar

Laravel 10 + Vite and Codespaces

Hi. I successfully run Laravel 10 on Codespaces with some issues. I use this devcontainer config: { "name": "Existing Docker Compose (Extend)", "dockerComposeFile": [ "../docker-compose.yml" ], "service": "laravel.test", "workspaceFolder": "/var/www/html", "customizations": { &qu

codeone's avatar
codeone's avatar anchan421yr agoDevOps
10
4
Last reply by anchan42 1yr ago
jorgb's avatar

Vite config for multiple development setups

I'm working on a Laravel 10 project together with a friend. We both use different detups in our development. I use Laravel from a homestead setup and my friend uses sail in combination with docker. My vite.config.js with homestead looks as follows: import { defineConfig } from 'vite'; import laravel, { refreshPaths } from 'laravel-vite-plugin'; export default defineConfig({ plu

jorgb's avatar
jorgb's avatar jorgb2yrs agoVite
0
2
minhtran's avatar

Connection timeout Laravel 10 and soketi

Hello, I'm using docker for soketi, when an event is dispatched, I can see logs in soketi docker logs, but I have connection timeout issue on the browser with Laravel Echo. Here's my current setup: # docker-compose.yml soketi: image: 'quay.io/soketi/soketi:latest-16-alpine' environment: SOKETI_DEBUG: "${SOKETI_DEBUG-1}" SOKETI_METRICS_SERVER_POR

minhtran's avatar
minhtran's avatar minhtran2yrs agoLaravel
1
1
Last reply by minhtran 2yrs ago
Starla833's avatar

cURL error 28: Connection timeout after 10001

I'm using laravel and I have wsl 2 and docker. What I have is 2 containers with identical code. What I'm trying to do is get my one container to talk to the other. So for example if in my code I do something like Http::get(http://172.26.0.4:8090), where 172.26.0.4:8090 is the second container, then I should be able to go there and see the page or at least hit the function. The

Starla833's avatar
Starla833's avatar valentin_v...2yrs agoLaravel
2
1
Last reply by valentin_vranic 2yrs ago
Upgreidas's avatar

Laravel behind Nginx reverse proxy always throws 404

I have clean Laravel 10 app running in docker container using sails and nginx web server (in main server, not a docker container) with reverse proxy to Laravel app. No matter which path I try I always get 404 error. And this error is thrown from Laravel, not Nginx. I see Laravel's 404 template. That means my request reaches Laravel app but it throws 404 error somewhere in runt

Upgreidas's avatar
Upgreidas's avatar Upgreidas2yrs agoLaravel
3
1
Last reply by Upgreidas 2yrs ago
Noktis's avatar

Using Livewire with proxy_pass from different site

Greetings :-) I have 2 different Docker containers with the main website and Laravel forum. Using proxy_pass in nginx, I'm routing /forum request to another Docker container. Everything works besides system POST request inside Livewire component. For example, Livewire uses Notifications Provider and tries to reach it every 5 seconds using POST. This particular route always ends

Noktis's avatar
Noktis's avatar Noktis2yrs agoLivewire
0
1
wildson's avatar

How to setup a secure, local, Mac dev environment

Hi all. I just getting back into using Laravel and am struggling to decide how best to set up my local dev environment securely. Herd looks fantastic, but I am concerned about the security implications of using this on my main Mac (ie the same one I use for banking etc). Specifically, I am worried about the security implications of all the packages that these local environments

wildson's avatar
wildson's avatar Tray22yrs agoGeneral
2
1
Last reply by Tray2 2yrs ago
Marceleza's avatar

Problem with Inertia when deploy

Hi Everybody In .env file APP_URL and ASSET_URL are both "http://domain.com.br/site2" I put on app.blade.php the directive @routes, after that i run: "php artisan ziggy:generate", the /resources/js/ziggy.js file show the correct configuration: const Ziggy = {"url":"http://www.domain.com.br/site2","port":null,"defaults"

Marceleza's avatar
Marceleza's avatar Marceleza2yrs agoInertia
0
1
Pixelairport's avatar

Laravel+Sail+Fleet=Vite not working

Hi. I try to switch from homestead to docker and from webpack to vite. Now I have everything working with sail. Also with an ssl url. Problem now is, that vite is not working. Chrome console says: GET https://wimg.localhost:5173/@vite/client net::ERR_SSL_VERSION_OR_CIPHER_MISMATCH I cant find infos where to start to look for the error. I also use https://github.com/aschmelyun/f

Pixelairport's avatar
Pixelairport's avatar Pixelairpo...2yrs agoLaravel
2
1
Last reply by Pixelairport 2yrs ago
PeterN123's avatar

Issue running php artisan migrate - Chirper App

Hello everyone, I am building my first Laravel app Chirper with Docker. I manage to set up the basic, but I however have issue with "PHP Artisan Migrate" This is the error: Illuminate\Database\QueryException SQLSTATE[HY000] [2002] php_network_getaddresses: getaddrinfo for mysql failed: nodename nor servname provided, or not known (Connection: mysql, SQL: select *

PeterN123's avatar
PeterN123's avatar Snapey2yrs agoLaravel
7
3
Last reply by Snapey 2yrs ago
marcelosmbr's avatar

Unable to locate file in Vite manifest: resources/js/Pages/guest/SignIn.tsx.

I cant deploy my app with Laravel, Inertia, React and TS on Digital Ocean. This error has been on my foot since the beginning of the week. First it happened with Laravel Sail and I had to pass these settings in vite.config for it to work. watch: { usePolling: true, origin: 'http://localhost' }, server: { hmr: { host: 'localhost' } } Then I managed to run with docker, on my mach

marcelosmbr's avatar
marcelosmbr's avatar vincent150...2yrs agoLaravel
1
1
Last reply by vincent15000 2yrs ago
Ninj4df's avatar

Laravel Shift - Don't. touch code styling?

Has anyone used Laravel Shift to upgrade his Laravel project? If yes, do you know if it is possible to disable code styling changes? I would like to only have the upgrade without any code styles changing at all, from the docs I couldn't find something related on that. PS: Using Docker version of it

Ninj4df's avatar
Ninj4df's avatar JabatoFore...2yrs agoLaravel
1
1
Last reply by JabatoForever 2yrs ago
indihth's avatar

Error on installing Sail on existing project - System cannot find the path specified

I've gotten stuck with trying to dockerize existing projects using Sail. I can create new projects using: curl -s https://laravel.build/example-app | bash This runs without any issues. I've followed the steps for installing Sail on an existing project: composer require laravel/sail --dev php artisan sail:install But after sail:install runs, it says "Sail scaffolding instal

indihth's avatar
indihth's avatar JanSvacek2yrs agoLaravel
1
1
Last reply by JanSvacek 2yrs ago
TytoAlba's avatar

Issues with Sail after cloning project

Hi, Created a fresh laravel 10 projet and installed Livewire (3.0 beta) and Jetstream. Pushed to git. Trying to clone the same project onto another machine, which seemed to work but got two issues. Using Windows WSL and project includes a PostGres Db with PostGIS. Got Sail projects working with similar on both machines, but can't clone projects either way without issues. Cl

TytoAlba's avatar
TytoAlba's avatar LaryAI2yrs agoLaravel
1
1
Last reply by LaryAI 2yrs ago
shaher11's avatar

Laravel dockerized app working on windows and not on ubuntu !

I created a laravel docker app with Nginx and Postgres, after building and running the app it worked fine on Windows but not worked on Ubuntu. The error page: This page isn’t working localhost didn’t send any data. ERR_EMPTY_RESPONSE docker-compose.yml version: '3' networks: webapp: services: nginx: image: nginx:stable-alpine container_name: ${APP_NAME}_nginx

shaher11's avatar
shaher11's avatar shaher112yrs agoLaravel
2
1
Last reply by shaher11 2yrs ago
Lumethys's avatar

MSSQL Server (SQLSRV) on Fly.io

So i'm working on a deploy of a hobby project on Fly.io, only thing is, it use a MSSQL server as the database, which mean i need to install sqlsrv and pdo_sqlsrv on the Fly.io's docker container. Problem is, they use their custom docker image as the base image, which doesnt include pecl or the docker-php-ext-xxxx stuffs. I tried using COPY -from : COPY --from=php:8.2-fpm /usr/l

Lumethys's avatar
Lumethys's avatar Lumethys2yrs agoDevOps
1
1
Last reply by Lumethys 2yrs ago
danichurras's avatar

How are you guys liking WSL 2?

I know Windows is not the default when we talk about web-dev but I'm curious about the community thoughts on this feature. Docker integration + PHPStorm remote interpreters seems good enough to make it a Linux level experience. Maybe MacOS too? Tell me you guys thoughts 🤔

danichurras's avatar
danichurras's avatar danichurra...2yrs agoGeneral
8
1
Last reply by danichurras 2yrs ago
aosdev's avatar

Redis going down after 1 hour Laravel Sail

Hello, I have a job queue around 6000 requests to a service. After i started this queue redis going down after 1 hour, when i checked docker ui i see redis exited , is there any limitation? After i start redis from docker ui, the queue going continue. Here are my docker redis logs; 2023-07-26 17:00:24 1:C 26 Jul 2023 14:00:24.932 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo

aosdev's avatar
aosdev's avatar hupp2yrs agoLaravel
3
1
Last reply by hupp 2yrs ago
CrastyCrap's avatar

failed to load config from /app/app/vite.config.js

Hello, I am trying to containerize Vue Vite app with docker but I am getting the following error failed to load config from /app/app/vite.config.js any suggestions?

CrastyCrap's avatar
CrastyCrap's avatar CrastyCrap2yrs agoVite
0
3
vlauciani's avatar

DockerSwarm/Kubernetes - MySQL container restart empty

Hi I’m using Laravel with docker swarm (or with kubernetes); to simplify my problem, consider that we have two containers: laravel app mysql (used only for horizon job, no need persistent volume) the problem is that when the MySQL container crashes and will be restarted by the orchestrator, It doesn’t contain the migrations because the DB is empty. To solve that I’ve simply a

vlauciani's avatar
vlauciani's avatar Tray22yrs agoLaravel
1
1
Last reply by Tray2 2yrs ago
kvads's avatar

Porstgres LC_COLLATE & LC_CTYPE change using Laravel Sail

So, problem is I'm newbie in Docker... and pgsql :) I have simple Docker file FROM postgres:15 RUN localedef -i ru_RU -c -f UTF-8 -A /usr/share/locale/locale.alias ru_RU.UTF-8 ENV LANG ru_RU.utf8 https://www.postgresql.org/docs/current/app-initdb.html This documentation says that I can set default locale to database cluster on creating that db cluster, adding arguments --lc-cty

kvads's avatar
kvads's avatar kvads2yrs agoDevOps
0
1
khantsithu's avatar

Laravel breeze error on Gitpod

It's been 7 days, I've been stack at setting up laravel breeze in gitpod environment with sail (docker option). It's fine when I install just laravel with sail. But when I add breeze, it's just become white screen and "mixed content can't be loaded" appear on console. I think it's some kind of configuration error with vite. Can someone help me out? You might wanna fol

khantsithu's avatar
khantsithu's avatar khantsithu2yrs agoReact
0
1
Chaeril's avatar

need help moving gpg from wsl to sail

so i installed wsl, connect it to docker. then using wsl command line i pulled git project from gitlab. in here i registered ssh and gpg solely for 'work'. place them nicely inside \\wsl.localhost\Ubuntu\home\ubuntu. then i ran the dev environment, installed composer, yarn and do some magic. but i cant commit. now how do i move gpg and ssh from wsl\home\ubuntu to sail's docker

Chaeril's avatar
Chaeril's avatar Chaeril2yrs agoLaravel
0
1
SilentTech's avatar

Laravel laradock Nginx Postgres Request Help

Hi everyone i have trouble accessing my site on browser i have already followed this steps but i cant able to run my project please help me: Requirements PHP >= 8.1 (Best to use 8.1 since php-cs-fixer is not working on PHP 8.2 at the moment) Postgres 15 Nginx Installation steps If using laradock, Clone the repository Install the requirements by running composer install. If

SilentTech's avatar
SilentTech's avatar SilentTech2yrs agoDevOps
0
1
abcuse's avatar

Graphiql Server Not Showing Up

I am following a tutorial from freecodecamp https://www.freecodecamp.org/news/build-a-graphql-api-using-laravel/ and am trying to develop a laravel graphql API using rebing but when I go to localhost/graphiql, I get a 404 error and my docker server does not tell me what is the issue. I have this configured in my graphql.php file 'graphiql' => [ 'prefix' => '/gra

abcuse's avatar
abcuse's avatar abcuse2yrs agoLaravel
0
1
Alphy Gacheru's avatar

visiting http://localhost/ after running ./vendor/bin/sail up shows the Apache2 Ubuntu Default Page instead of the laravel app

I'm using Linux and I already have docker compose installed. After creating an application with curl -s https://laravel.build/example-app | bash, running ./vendor/bin/sail up and visiting http://localhost/ in the browser I see Apache2 Ubuntu Default Page instead of the new laravel app. How can I fix the issue? Below is part of the output when I run ./vendor/bin/sail up [+] Buil

Alphy Gacheru's avatar
Alphy Gacheru's avatar taylor53921yr agoLaravel
4
1
Last reply by taylor5392 1yr ago
raimondsL's avatar

Unable to run Laravel 8 Sail (existing project)

PS C:\DEV\Docker\bee> cmd Microsoft Windows [Version 10.0.22000.739] (c) Microsoft Corporation. All rights reserved. C:\DEV\Docker\bee>bash ./vendor/bin/sail up -d [+] Building 0.0s (0/0) [+] Running 2/2 ✔ Network d4cd61d598f66cbacae9e0f2011834f55d902bceffd4f47ec74d3aaecc3351a3_bridge Created

raimondsL's avatar
raimondsL's avatar raimondsL2yrs agoDevOps
3
1
Last reply by raimondsL 2yrs ago
thomthom's avatar

Local dev environment for old Laravel 5.2 app? (Windows)

I got an old Laravel 5.2 project that's not been updated for a good while. I used to use VirtualBox for local dev environment. It was a ok, but kept breaking with Windows or VirtualBox updates. I see that the latest Laravel docs (v10) describe Sail. Can I use Sail with my old app? I found a comment in the Sail docs: https://laravel.com/docs/10.x/sail#installing-sail-into-existi

thomthom's avatar
thomthom's avatar thomthom2yrs agoLaravel
6
1
Last reply by thomthom 2yrs ago

Want us to email you occasionally with Laracasts news?

Nine out of ten doctors recommend Laracasts over competing brands. Come inside, see for yourself, and massively level up your development skills in the process.

Learn
BrowseSeriesCreatorSeriesLaravel PathLarabitsPlayground
Discuss
ForumPodcastSupport
Extras
Gift CertificatesApparelFAQiOS AppTerms
Social
X(Twitter)TikTokYoutube

© Laracasts 2026. All rights reserved. Yes, all of them. That means you, Todd.

Proudly hosted with Laravel Forge and DigitalOcean.

Want us to email you occasionally with Laracasts news?

Nine out of ten doctors recommend Laracasts over competing brands. Come inside, see for yourself, and massively level up your development skills in the process.

Learn
BrowseSeriesCreatorSeriesLaravel PathLarabitsPlayground
Discuss
ForumPodcastSupport
Extras
Gift CertificatesApparelFAQiOS AppTerms
Social
X(Twitter)TikTokYoutube

© Laracasts 2026. All rights reserved. Yes, all of them. That means you, Todd.

Proudly hosted with Laravel Forge and DigitalOcean.