#how to run laravel on DockerFile
13 messages · Page 1 of 1 (latest)
Hi there
You might wanna check
https://laravel.com/docs/9.x/sail
🙂
OH THX
You welcome! ^_^
FYI sail is not for production purposes. Its local development only
Then you’re going to need to do a Docker tutorial.
I’d also strongly advise not to run Docker in production if you’re asking fundamental questions, because if you mess something up you’re going to take your site down and not know how to fix things.
If I was to order how to host a laravel site from beginner to advanced it would be like this:
- use pre-built tools like vapor or forge
- learn server management and deploy your own standard server and application
- learn docker
- learn kubernetes (if necessary)
each step builds upon the knowledge you gain from previous ones
thx guys