mirror of https://github.com/akaunting/docker.git
Added missing pdo driver for PostgreSQL
This commit is contained in:
parent
d38a61df23
commit
0412e8f2a7
|
@ -43,6 +43,7 @@ RUN docker-php-ext-configure gd \
|
|||
pcntl \
|
||||
pdo \
|
||||
pdo_mysql \
|
||||
pdo_pgsql \
|
||||
zip
|
||||
|
||||
RUN mkdir -p /var/www/akaunting \
|
||||
|
|
|
@ -27,7 +27,7 @@ ADD https://github.com/mlocati/docker-php-extension-installer/releases/latest/do
|
|||
|
||||
# Install PHP Extensions
|
||||
RUN chmod +x /usr/local/bin/install-php-extensions && sync && \
|
||||
install-php-extensions gd zip intl imap xsl pgsql opcache bcmath mysqli pdo_mysql redis
|
||||
install-php-extensions gd zip intl imap xsl pgsql opcache bcmath mysqli pdo_mysql pdo_pgsql redis
|
||||
|
||||
# Configure Extension
|
||||
RUN docker-php-ext-configure \
|
||||
|
|
|
@ -26,7 +26,7 @@ ADD https://github.com/mlocati/docker-php-extension-installer/releases/latest/do
|
|||
|
||||
# Install PHP Extensions
|
||||
RUN chmod +x /usr/local/bin/install-php-extensions && sync && \
|
||||
install-php-extensions gd zip intl imap xsl pgsql opcache bcmath mysqli pdo_mysql redis
|
||||
install-php-extensions gd zip intl imap xsl pgsql opcache bcmath mysqli pdo_mysql pdo_pgsql redis
|
||||
|
||||
# Configure Extension
|
||||
RUN docker-php-ext-configure \
|
||||
|
|
|
@ -19,7 +19,7 @@ ADD https://github.com/mlocati/docker-php-extension-installer/releases/latest/do
|
|||
|
||||
# Install PHP Extensions
|
||||
RUN chmod +x /usr/local/bin/install-php-extensions && sync && \
|
||||
install-php-extensions gd zip intl imap xsl pgsql opcache bcmath mysqli pdo_mysql
|
||||
install-php-extensions gd zip intl imap xsl pgsql opcache bcmath mysqli pdo_mysql pdo_pgsql
|
||||
|
||||
# Configure Extension
|
||||
RUN docker-php-ext-configure \
|
||||
|
|
|
@ -35,7 +35,7 @@ ADD https://github.com/mlocati/docker-php-extension-installer/releases/latest/do
|
|||
|
||||
# Install PHP Extensions
|
||||
RUN chmod +x /usr/local/bin/install-php-extensions && sync && \
|
||||
install-php-extensions gd zip intl imap xsl pgsql opcache bcmath mysqli pdo_mysql redis pcntl
|
||||
install-php-extensions gd zip intl imap xsl pgsql opcache bcmath mysqli pdo_mysql pdo_pgsql redis pcntl
|
||||
|
||||
# Configure Extension
|
||||
RUN docker-php-ext-configure \
|
||||
|
|
|
@ -44,6 +44,7 @@ RUN docker-php-ext-configure gd \
|
|||
pcntl \
|
||||
pdo \
|
||||
pdo_mysql \
|
||||
pdo_pgsql \
|
||||
zip
|
||||
|
||||
# Download Akaunting application
|
||||
|
|
Loading…
Reference in New Issue