Reputation: 1192
I have a custom Laravel installation on my Ubuntu machine. As per Laravel's instructions however, I didn't use Homestead to spin up my app. Instead I installed the app using composer on my machine and then installed the dependencies and libraries as per the requirement.
Now I want to use another machine for development. How's it possible using Docker to package a replica of my machine's environment to create a container to be used on the other machine. I am new to Docker and haven't used it before for whatsoever reasons.
Upvotes: 2
Views: 1075
Reputation: 3115
Have you considered using Laravel Valet? It's a lot more light weight than Docker and Homestead and can spin up your projects almost instantaneously.
If you wish to persist with Docker then Laradock has probably figured out most of what you wish to use.
Upvotes: 3
Reputation: 717
I created a barebones Docker Compose repo that can be used for Laravel or as a LAMP Server and it comes with:
Most of the ones I came across are pretty bloated with stuff that I didn't need.
Upvotes: 2