espocrm / espocrm-docker

Official Docker Image for EspoCRM
https://hub.docker.com/r/espocrm/espocrm
GNU Affero General Public License v3.0
56 stars 34 forks source link

Fix PostgreSQL support #31

Closed sourcecodes2 closed 3 months ago

sourcecodes2 commented 6 months ago

PostgreSQL support is currently broken due to no system libraries or PDO drivers installed inside the Debian or Alpine images.

espocrm-postgresql

This pull request adds the respective system libraries and PHP extensions for both distribution containers.

Debian system library: libpq-dev Alpine system library: postgresql-dev PHP extension: pdo_pgsql

sourcecodes2 commented 6 months ago

CLA signed

xlyz commented 6 months ago

Be careful that docker-entrypoint.sh does not work as expected as in some functions (e.g. installEspocrm()) it assumes the use of mysql.

tmachyshyn commented 3 months ago

@sourcecodes2 thanks for your contribution.