Last active
April 26, 2022 10:19
-
-
Save quan-vu/25a1a07ec0f434094fb0246619b783d8 to your computer and use it in GitHub Desktop.
Docker php fpm install mongodb extension
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM php:8.1-fpm | |
# Arguments defined in docker-compose.yml | |
ARG user=ubuntu | |
ARG uid=1000 | |
# Install system dependencies | |
RUN apt-get update && apt-get install -y \ | |
git \ | |
curl \ | |
libpng-dev \ | |
libonig-dev \ | |
libxml2-dev \ | |
zip \ | |
unzip | |
# Clear cache | |
RUN apt-get clean && rm -rf /var/lib/apt/lists/* | |
# Install PHP extensions | |
RUN docker-php-ext-install pdo_mysql mbstring exif pcntl bcmath gd | |
# Install MongoDB for PHP | |
RUN pecl install mongodb && docker-php-ext-enable mongodb | |
# Get latest Composer | |
COPY --from=composer:latest /usr/bin/composer /usr/bin/composer | |
# Create system user to run Composer and Artisan Commands | |
RUN useradd -G www-data,root -u $uid -d /home/$user $user | |
RUN mkdir -p /home/$user/.composer && \ | |
chown -R $user:$user /home/$user | |
# Set working directory | |
WORKDIR /var/www/html | |
USER $user |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment