Skip to content

Commit

Permalink
Merge pull request #1 from buggregator/feature/database-drivers
Browse files Browse the repository at this point in the history
Added support for PDO and MongoDB drivers
  • Loading branch information
butschster committed Apr 14, 2024
2 parents d1fc7a9 + 1b3a2dd commit c2dff2c
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,26 @@ RUN docker-php-ext-install \
bcmath \
sockets

# PHP settings
RUN sed -i 's/memory_limit = 128M/memory_limit = 1024M/g' "$PHP_INI_DIR/php.ini-production" && \
sed -i 's/post_max_size = 8M/post_max_size = 1024M/g' "$PHP_INI_DIR/php.ini-production" && \
mv "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini"

# Nginx
RUN apk add --no-cache nginx
COPY ./nginx/nginx.conf /etc/nginx/nginx.conf
RUN [ -d /etc/nginx/conf.d ] || mkdir /etc/nginx/conf.d
COPY ./nginx/default.conf /etc/nginx/conf.d/default.conf

# PDO database drivers support
RUN apk --no-cache add postgresql-dev
RUN docker-php-ext-install \
pgsql pdo_pgsql pdo_mysql \

# MongoDB support
RUN pecl install mongodb \
&& docker-php-ext-enable mongodb

RUN curl -s https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin/ --filename=composer

RUN docker-php-source delete \
Expand Down

0 comments on commit c2dff2c

Please sign in to comment.