Skip to content

Commit

Permalink
[internal] fix mongo version
Browse files Browse the repository at this point in the history
  • Loading branch information
mpoiriert committed Apr 23, 2024
1 parent c06293c commit 1e0382f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .docker/php/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ RUN docker-php-ext-configure gd --with-jpeg
RUN docker-php-ext-install pdo pdo_mysql gd zip pcntl

COPY php.ini /usr/local/etc/php/php.ini
COPY php.ini /etc/php/7.3.24/php.ini
COPY php-fpm-pool.conf /etc/php/7.3.24/pool.d/www.conf
COPY php.ini /etc/php/8.1.5/php.ini
COPY php-fpm-pool.conf /etc/php/8.1.5/pool.d/www.conf

#COMPOSER
RUN curl -sSk https://getcomposer.org/installer | php -- --disable-tls && \
Expand Down Expand Up @@ -57,13 +57,13 @@ RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && \
echo "fr_FR.UTF-8 UTF-8" >> /etc/locale.gen && \
locale-gen

#MONGODB
RUN pecl install mongodb 1.17.2 && docker-php-ext-enable mongodb

#MYSQL
RUN apt-get update && apt-get install -y --no-install-recommends default-mysql-client && \
rm -rf /var/lib/apt

#MONGODB
RUN pecl install mongodb-1.17.2 && docker-php-ext-enable mongodb

ARG PUID=1000
ARG PGID=1000

Expand Down

0 comments on commit 1e0382f

Please sign in to comment.