I built a web app using Laravel 12 with Sail, and I'm trying to deploy it on Railway. I found some guides, but none seem to work.
I uploaded my project, but I'm getting a 502 Bad Gateway error. Additionally, when I create the database service on Railway, Laravel doesn't seem to connect to it.
What I've tried:
Uploading the project directly from GitHub to Railway.
Creating a MySQL service on Railway and updating my .env file with the provided credentials.
Running migrations manually, but Laravel can't connect to the database.
My questions:
Do I need to create a custom Dockerfile to deploy Sail on Railway?
Is there any step-by-step guide to deploy a Laravel 12 Sail project on Railway?
What’s the best approach to handle database connections in Railway with Sail?
Any help or guidance would be greatly appreciated. Thanks!