I am really enjoying your video - you explain every step so I that, as a beginner with Docker, I get to understand why I'm doing what you're asking me to do. Keep up the great service to our community!
thanks for your great video.i get this error when i run docker-compose build command: services.laravel_eleven_app.build must be a string. could you plz give me a solution how to fix this??
@@codewithtee okay, I’m currently working on it, your video was really helpful, but I am still stacked because the conf file in my local sever was not transferred to the container
thanks for your tutorial sir. how about dockerize laravel in production environment ? can you give best practice for it? i would be happy if you colud make the video tutorial 😊🙏
@@albaprogrammer2710 this works in production as well... The only difference is, in production you just swap your database credentials and all.. Also in production you will run your docker in detached mode.
@@codewithtee hmmm okey, but what about optimization ? maybe we can more optimize the Dockerfile, ex we can use php:8.3-alpine, also remove useless code like tests folder, etc. or maybe we use the multistage sorry if i'm wrong 🙏
@@albaprogrammer2710 I don't think you need to push to docker image, it is not a necessity... If you want a docker file or configuration specific for prod, you can create another docker compose file that you will only run in production, you can pass the name of your docker compose file
I am really enjoying your video - you explain every step so I that, as a beginner with Docker, I get to understand why I'm doing what you're asking me to do. Keep up the great service to our community!
@@ibagitated I am happy you enjoyed it. Let me know what you would like me to publish
very helpful video, thanks
I really appreciate it
God bless you for the video
Thank you very much, I am happy you found it helpful
Yes, it will..
Just be sure the php version matches the laravel version
Can this work for laravel 10 ?
Yes
thanks for your great video.i get this error when i run docker-compose build command:
services.laravel_eleven_app.build must be a string.
could you plz give me a solution how to fix this??
@@AlirezaPd-j8v invite me to the repo, I need to see your docker and docker compose file #harmlessprince
do you think that with apache it will be the same process???
@charles-harisbouassebukomb8133@@charles-harisbouassebukomb8133 apache will be quite different, you will need another Dockerfile for that
I will try to create one for apache
@@codewithtee okay, I’m currently working on it, your video was really helpful, but I am still stacked because the conf file in my local sever was not transferred to the container
make sure you are mounting your config in the right path.. If you still can't figure it out.. Shoot me a mail realolamilekan@gmail.com
@@codewithtee alright
Will the setup work with laravel 8 too?
yes
thanks for your tutorial sir. how about dockerize laravel in production environment ? can you give best practice for it?
i would be happy if you colud make the video tutorial 😊🙏
@@albaprogrammer2710 this works in production as well... The only difference is, in production you just swap your database credentials and all..
Also in production you will run your docker in detached mode.
@@codewithtee hmmm okey, but what about optimization ? maybe we can more optimize the Dockerfile, ex we can use php:8.3-alpine, also remove useless code like tests folder, etc. or maybe we use the multistage
sorry if i'm wrong 🙏
i try to build the image from your Dockerfile, and the size of image is 740MB. is that normal ? or maybe it can still be optimized again ?
@@albaprogrammer2710 php apline is only lighter in terms of size, tests folders are never going to be the reason your application is slow....
@@albaprogrammer2710 I don't think you need to push to docker image, it is not a necessity...
If you want a docker file or configuration specific for prod, you can create another docker compose file that you will only run in production, you can pass the name of your docker compose file