Php mysql project running with Docker
In this tutorial, I am going to teach how to run a PHP MySQL project with Docker. Create Dockerfile When building a PHP Docker container for a project that connects to MySQL, you must install the required PHP extensions inside the container. inside the docker file add this. FROM php:8.2-apache RUN docker-php-ext-install mysqli pdo pdo_mysql […]
Php mysql project running with Docker Read More »