-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to deal with the user permisions on the folders? #28
Comments
I also had a similar issue on PHP containers for Laravel. I solved this using an entrypoint script: https://github.com/nezhar/laravel-docker-compose/tree/master/docker/php I may add this also here in future. |
Hi, How did you by pass that issue ? |
Even though I don't like messing with permissions of folders, I changed them manually. Inside the root folder I give Don't forget the last dot. |
|
Also you may try to run the container as an arbitrary user as provided in the docs of the PHP Docker image, as this is the base of the Wordpress image: https://hub.docker.com/_/php/ All you need for this is to extend the environmets of the wordpress service:
|
Hi, I've tried adding the "APACHE_RUN_USER: 1000" and "APACHE_RUN_GROUP: 1000" to fix the permission problem, but I get this: |
@d-castelli haven't tried it but have you tried adding the # before the id and group as specified in the doc nezhar referenced? |
This solution can fix the issue quickly, thanks a lot @markdimi |
The folders that are created after running
docker-compose up -d
belong to the root user. How to deal with the user permissions?I want to create a complete development environment thus I need complete access to wp-content for themes and plugins.
The text was updated successfully, but these errors were encountered: