/docker-compose-nginx-phpfpm-xdebug-mariadb

The primary goal of this project is to create a streamlined and efficient development environment using Docker Compose. This environment will consist of PHP-FPM, Xdebug, Nginx web server, and MariaDB, enabling developers to quickly and easily start working on their PHP projects.

Primary LanguageDockerfile

Docker compose PHP 8.3.12, Xdebug 3.3.2, Nginx 1.27.2, Redis 7.4.0 and MariaDB 11.5.2

docker nginx php xdebug phpunit redis mariadb

Goal of this project

The primary goal of this project is to create a streamlined and efficient development environment using Docker Compose. This environment will consist of PHP-FPM, Xdebug, Nginx web server, and MariaDB, enabling developers to quickly and easily start working on their PHP projects.

Services

Setup Instructions

  1. Clone the repository:

    git clone https://github.com/IshtarStar/docker-compose-nginx-phpfpm-xdebug-mariadb.git ./docker-skeleton
    cd docker-skeleton
  2. Build and start the Docker containers:

    docker compose up --build -d
  3. Install Composer dependencies:

    docker compose exec -T php-fpm composer install
  4. Run PHPUnit tests with code coverage:

    docker compose exec -T php-fpm ./vendor/bin/phpunit --coverage-text --testdox tests

Example PHPUnit Test

An example PHPUnit test is included in the tests directory.

See also: Blog-Post: Dockerize your PHP application with Nginx and PHP8 FPM