-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Closed
Labels
questionUsability question, not directly related to an error with the imageUsability question, not directly related to an error with the image
Description
I´m using docker compose to create all my wordpress container. If I create my container with mount volumes for plugins, themes and languages I can´t update/upgrade all of this. Here are my configurations:
wordpress:
image: wordpress:latest
volumes:
- ./wp-content/plugins:/var/www/html/wp-content/plugins
- ./wp-content/themes:/var/www/html/wp-content/themes
- ./wp-content/languages:/var/www/html/wp-content/languages
- ./wp-content/uploads:/var/www/html/wp-content/uploads
Normally all setting should be fixed with creation, but I think it doesn't work well.
docker exec -it wordpress ls -la
total 212
drwxrwxrwx 5 www-data www-data 4096 Dec 3 13:06 .
drwxr-xr-x 1 root root 4096 Nov 28 22:47 ..
-rw-r--r-- 1 www-data www-data 235 Dec 2 09:53 .htaccess
-rw-r--r-- 1 www-data www-data 418 Sep 25 2013 index.php
-rw-r--r-- 1 www-data www-data 19935 Jan 6 2018 license.txt
-rw-r--r-- 1 www-data www-data 71 Apr 25 2018 php.ini
-rw-r--r-- 1 www-data www-data 7415 Mar 18 2018 readme.html
-rw-r--r-- 1 www-data www-data 5458 May 1 2018 wp-activate.php
drwxr-xr-x 9 www-data www-data 4096 Aug 2 20:39 wp-admin
-rw-r--r-- 1 www-data www-data 364 Dec 19 2015 wp-blog-header.php
-rw-r--r-- 1 www-data www-data 1889 May 2 2018 wp-comments-post.php
-rw-r--r-- 1 www-data www-data 2853 Dec 16 2015 wp-config-sample.php
-rw-r--r-- 1 www-data www-data 3730 Dec 2 11:01 wp-config.php
drwxr-xr-x 7 root root 4096 Dec 3 13:05 wp-content
-rw-r--r-- 1 www-data www-data 3669 Aug 20 2017 wp-cron.php
drwxr-xr-x 18 www-data www-data 12288 Aug 2 20:39 wp-includes
-rw-r--r-- 1 www-data www-data 2422 Nov 21 2016 wp-links-opml.php
-rw-r--r-- 1 www-data www-data 3306 Aug 22 2017 wp-load.php
-rw-r--r-- 1 www-data www-data 37794 Jul 16 14:14 wp-login.php
-rw-r--r-- 1 www-data www-data 8048 Jan 11 2017 wp-mail.php
-rw-r--r-- 1 www-data www-data 16246 Oct 4 2017 wp-settings.php
-rw-r--r-- 1 www-data www-data 30091 Apr 29 2018 wp-signup.php
-rw-r--r-- 1 www-data www-data 4620 Oct 23 2017 wp-trackback.php
-rw-r--r-- 1 www-data www-data 3065 Aug 31 2016 xmlrpc.php
If I temporary disable the volumes the wp-content directory has the right permissions.
Metadata
Metadata
Assignees
Labels
questionUsability question, not directly related to an error with the imageUsability question, not directly related to an error with the image