ho-nl / docker-development-box

🐳 Reach Digital Magento 2 Docker+local hybrid devbox 🐳
Apache License 2.0
20 stars 4 forks source link

PHP 7.2 installation fails and services fail to start when running install.sh script #90

Closed hnsr closed 2 years ago

hnsr commented 2 years ago

Known issue with a workaround (see README.md), but still needs a proper fix; on initial install, PHP 7.2 is broken and php-fpm dervices fail to start.

Root cause of the problem is that the php binary is linked with tidy-html5, but this library is not present during install (maybe we can just install tidy-html5 manually ahead of installing PHP 7.2?), resulting in:

dyld: Library not loaded: /usr/local/opt/tidy-html5/lib/libtidy.5.dylib
  Referenced from: /usr/local/Cellar/php@7.2/7.2.34_4/bin/php
  Reason: image not found

The workaround is to run brew reinstall tidy-html5 afterwards

hnsr commented 2 years ago

Also see PR #85

hnsr commented 2 years ago

Fix has been merged