-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update starter site & matomo extra tools & fix permission Bugs (#350)
* Update Matomo Extra Tools from 5.0.1 -> 5.0.4 Required to fix build issue, that was being covered up by a previously successful cache. * Fix for potential permission issues. A number of permission issues have gone unnoticed, I became aware of them when I did a fresh build without cache on a newly installed computer. When building Docker images, Docker copies files/folders with the same permissions as they have on the host machine. Git does not track the permissions of files except for the executable bit on files. So depending on who builds the images files/folders can get different permissions. This changes it such that the Makefile will ensure the appropriate permissions are set when building. This is required as we run services as different users other than root in the container. Those users must be able to access and execute certain files. * Update to latest starter site, and hard-code paths to support it.
- Loading branch information
1 parent
04be359
commit 24f0418
Showing
6 changed files
with
37 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -67,4 +67,4 @@ ENV \ | |
|
||
COPY --link rootfs / | ||
|
||
RUN chown -R nginx:nginx /var/www | ||
RUN chown -R nginx:nginx /var/www /usr/share/drush |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters