From 0c47469758bb055ef6e947d32f6866e8bb4d551c Mon Sep 17 00:00:00 2001 From: Krot Eval <38257723+4n70w4@users.noreply.github.com> Date: Thu, 5 Nov 2020 13:43:10 +0300 Subject: [PATCH] Update README.md `chmod +x` gets the same result that `chmod a+x` and `chmod uga+x`. Classes of users are used to distinguish to whom the permissions apply. If no classes are specified "all" is implied. The classes are represented by one or more of the following letters: Reference Class Description u user file owner g group members of the file's group o others users who are neither the file's owner nor members of the file's group a all all three of the above, same as ugo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9fe3924..2748df7 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ FROM php:7.2-cli ADD https://raw.githubusercontent.com/mlocati/docker-php-extension-installer/master/install-php-extensions /usr/local/bin/ -RUN chmod uga+x /usr/local/bin/install-php-extensions && sync && \ +RUN chmod +x /usr/local/bin/install-php-extensions && sync && \ install-php-extensions gd xdebug ```