No need to set permissions when Docerizing Laravel App?
I've been following Andrew Schmelyun's course with Docker and everything looks normal to what I do in non-dockerized environment. However, I used to set the permissions of the project directory like this:
No docker does not handle setting permissions automatically. You are essentially creating an image that is reusable, however, that image is still just a linux machine when started up, so you can do anything you need to that docker image to get it setup to perform how you need it to.
So in short you need to set your permissions as you would normally do with any linux system.