Skip to content

Commit

Permalink
Merge branch 'release/1.2.17'
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Welch committed Jun 15, 2021
2 parents d742dca + 0ed1587 commit 3a2b4b5
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# nystudio107/docker-images Change Log

## 1.2.17 - 2021.06.15
### Fixed
* Fixed typo in Dockerfile that would cause the PHP container to not build

## 1.2.16 - 2021.06.15
### Changed
* Removed `USER` directive in the PHP containers, since the pool runs as `www-data` already
Expand Down
2 changes: 1 addition & 1 deletion php-prod-craft/php-7.4-alpine/mariadb/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ WORKDIR /var/www/project/cms
# when working with teams or multiple environments
CMD composer install --verbose --no-progress --no-scripts --optimize-autoloader --no-interaction \
&& \
chown -R www-data:www-data /var/www/project
chown -R www-data:www-data /var/www/project \
&& \
composer craft-update \
&& \
Expand Down
2 changes: 1 addition & 1 deletion php-prod-craft/php-7.4-alpine/postgres/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ WORKDIR /var/www/project/cms
# when working with teams or multiple environments
CMD composer install --verbose --no-progress --no-scripts --optimize-autoloader --no-interaction \
&& \
chown -R www-data:www-data /var/www/project
chown -R www-data:www-data /var/www/project \
&& \
composer craft-update \
&& \
Expand Down
2 changes: 1 addition & 1 deletion php-prod-craft/php-8.0-alpine/mariadb/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ WORKDIR /var/www/project/cms
# when working with teams or multiple environments
CMD composer install --verbose --no-progress --no-scripts --optimize-autoloader --no-interaction \
&& \
chown -R www-data:www-data /var/www/project
chown -R www-data:www-data /var/www/project \
&& \
composer craft-update \
&& \
Expand Down
2 changes: 1 addition & 1 deletion php-prod-craft/php-8.0-alpine/postgres/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ WORKDIR /var/www/project/cms
# when working with teams or multiple environments
CMD composer install --verbose --no-progress --no-scripts --optimize-autoloader --no-interaction \
&& \
chown -R www-data:www-data /var/www/project
chown -R www-data:www-data /var/www/project \
&& \
composer craft-update \
&& \
Expand Down

0 comments on commit 3a2b4b5

Please sign in to comment.