Hi guys , today I was trying build some testing project with sail tool. I must say it is great , but have some question. Is it possible to build and share this container once I finished my application ?How can I do ? and what if I want to modifiy this project later ? Regards.sali
Laravel Sail at the end of day is a docker-composer.yml file and a sail
script (just like artisan), that provides convenient methods to interact with docker containers.
You don't need to worry about share containers, just implement your application and keep .env.example and docker-composer.yml with all configurations your app needs. Anyone you share this project will be able to setup a .env file using .env.example and fire up the environment with sail up -d
command. Just like that.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community