First, run the following command to install development packages using Composer:
composer install --ignore-platform-reqs
# or,
docker compose run --rm composer install --ignore-platform-reqsNext, you need to build the base image:
docker compose build imageThen run the next command to start Docker containers:
docker compose up -dAlternatively, if you need to rebuild the service(s) and to restart the containers:
docker compose build image --no-cache
docker compose up -d --force-recreateNow you can create a bash session in the app container:
docker compose exec app bashAnd run commands inside the container:
composer testOr you can run commands directly inside the app container:
docker compose exec app composer testOnce you have Docker containers started (as discussed in previous section), you can use commands like following to run examples under folder examples.
docker compose exec app php examples/mysqli/base.php
docker compose exec app php examples/pdo/base.php
docker compose exec app php examples/redis/base.phpThere is a fantastic example showing how to use Swoole as a proxy to serve a WordPress website using PHP-FPM. Just open URL http://127.0.0.1 in the browser and check what you see there. Source code of the example can be found here.
Here are some more examples to make FastCGI calls to PHP-FPM:
docker compose exec app php examples/fastcgi/greeter/call.php
docker compose exec app php examples/fastcgi/greeter/client.php
docker compose exec app php examples/fastcgi/proxy/base.php
docker compose exec app php examples/fastcgi/var/client.phpHere are all the third party libraries used in this project:
- The FastCGI part is derived from Composer package lisachenko/protocol-fcgi.
You can find the licensing information of these third party libraries here.
This project follows the Apache 2 license.