friendica / docker

Docker image for Friendica
https://friendi.ca
GNU Affero General Public License v3.0
44 stars 18 forks source link

fix for https://github.com/friendica/docker/issues/241 #243

Closed salfter closed 5 months ago

salfter commented 6 months ago

The current stable images are missing the IntlChar PHP module. This fixes that.

MrPetovan commented 6 months ago

What the different between docker-php-ext-install and docker-php-ext-enable?

salfter commented 5 months ago

What the different between docker-php-ext-install and docker-php-ext-enable?

I don't know offhand. All I did was add a previously-undeclared dependency while trying (and failing) to get Friendica working under Docker. Previously, it was failing to start because of a missing dependency. After that, I ran into trouble getting Nginx to proxy it, whether with the Apache or PHP-FPM builds.

Update: https://hub.docker.com/_/php indicates that docker-php-ext-enable is for PECL extensions installed by the underlying system, while docker-php-ext-install is for extensions that are part of PHP that can be disabled/enabled when PHP is built.

MrPetovan commented 5 months ago

Thank you for your work!