I read your docker-files/php/7.4fpm file, you describe that is possible to add pdo_firebird but I can't do this.
I try it with RUN docker-php-ext-configure pdo_firebird --with-pdo-firebird \ && docker-php-ext-install -j$(nproc) \ pdo_firebird \
I spent a lot of time to search solution for it, and I see that there is no packages support it on alpine linux.(Maybe one, compiling php form scrath with --with-pdo-firebird flag https://www.php.net/pdo_firebird but it does't satisfy me)
Hi.
I read your
docker-files/php/7.4fpm
file, you describe that is possible to addpdo_firebird
but I can't do this. I try it withRUN docker-php-ext-configure pdo_firebird --with-pdo-firebird \ && docker-php-ext-install -j$(nproc) \ pdo_firebird \
I spent a lot of time to search solution for it, and I see that there is no packages support it on alpine linux.(Maybe one, compiling php form scrath with
--with-pdo-firebird
flag https://www.php.net/pdo_firebird but it does't satisfy me)Maybe you have any solution?