Skip to content

openswoole/docker-openswoole

Repository files navigation

Docker Image for OpenSwoole

Tests Docker Pulls License GitHub stars Twitter

Versioned Images Versioned Alpine Images Latest Images Latest Alpine Images

This image is built for general-purpose. We have different examples included in this Git repository to help developers to get familiar with the image and OpenSwoole.

You can get the image from Docker Hub.

Latest released version :22.1.2 for PHP8.1/PHP8.2/PHP8.3

Table of Contents

Feature List

  • Built-in scripts to manage OpenSwoole extensions and Supervisord programs.
  • Easy to manage booting scripts in Docker.
  • Allow running PHP scripts and other commands directly in different environments (including ECS).
  • Use one root filesystem for simplicity (one Docker COPY command only in dockerfiles).
  • Composer v2 for OpenSwoole 4.7.2 and after).
  • Built for different architectures.
  • Support auto-reloading for local development.
  • Support code debugging for local development.

How to Use This Image

The openswoole/swoole image is built using the official PHP image as base image, with a few changes. For basic usage, please check the description section of the official PHP image.

How to Install More PHP Extensions

Same as in the official PHP image, most PHP extensions can be installed/configured using built-in helper scripts docker-php-ext-configure, docker-php-ext-install, docker-php-ext-enable, and docker-php-source. Here are some examples.

# To install the MySQL extensions.
FROM openswoole/swoole:4.12-php7.4-alpine

RUN docker-php-ext-install mysqli pdo_mysql
# To install the Redis extension.
FROM openswoole/swoole:4.12-php7.4-alpine

RUN set -ex \
    && pecl update-channels \
    && pecl install redis-stable \
    && docker-php-ext-enable redis
# To install the Couchbase extension.
FROM openswoole/swoole:4.12-php7.4-alpine

RUN set -ex \
    && apk update \
    && apk add --no-cache libcouchbase=2.10.6-r0 \
    && apk add --no-cache --virtual .build-deps $PHPIZE_DEPS libcouchbase-dev=2.10.6-r0 zlib-dev \
    && pecl update-channels \
    && pecl install couchbase-2.6.2 \
    && docker-php-ext-enable couchbase \
    && apk del .build-deps \
    && rm -rf /var/cache/apk/* /tmp/* /usr/share/man /usr/src/php.tar.xz*

More Examples

Following examples are for non-Alpine images only. We don't have examples included for the Alpine images.

You can use the image to serve an HTTP/WebSocket server, or run some one-off command with it. e.g.,

docker run --rm openswoole/swoole "php -m"
docker run --rm openswoole/swoole "php --ri openswoole"
docker run --rm openswoole/swoole "composer --version"

We have various examples included under folder "examples/" to help developers better use the image. These examples are numerically ordered. Each example has a docker-compose.yml file included, along with some other files. To run an example, please start Docker containers using the docker-compose.yml file included, then check HTTP output from URL http://127.0.0.1 unless otherwise noted. You may use the following commands to start/stop/restart Docker containers:

./bin/example.sh start   00 # To start container(s) of the first example.
./bin/example.sh stop    00 # To stop container(s) of the first example.
./bin/example.sh restart 00 # To restart container(s) of the first example.

To run another example, just replace the last command line parameter 00 with an example number (e.g., 05).

Here is a list of the examples under folder "examples/":

  • Basic examples:
    • 00-autoload: Restart the Swoole web server automatically if file changes detected under web root.
    • 01-basic: print out "Hello, World!" using Swoole as backend HTTP server.
    • 02-www: to use some customized PHP script(s) in the Docker image built.
    • 03-nginx: to use Swoole behind an Nginx server.
    • 04-entrypoint: to use a self-defined entrypoint script in the Docker image built.
    • 05-boot: to update content in the Docker container through a booting script.
    • 06-update-token: to show how to update server configurations with built-in script update-token.sh.
    • 07-disable-default-server: Please check the docker-compose.yml file included to see show how to disable the default web server created with Swoole.
  • Manage PHP extensions and configurations:
    • 10-install-php-extension: how to install/enable PHP extensions.
    • 11-customize-extension-options: how to overwrite/customize PHP extension options.
    • 12-php.ini: how to overwrite/customize PHP options.
    • 13-install-swoole-extension: Please check the README file included to see how to install Swoole extensions like postgresql.
  • Manage Supervisord programs:
    • 20-supervisord-services: to show how to run Supervisord program(s) in Docker.
    • 21-supervisord-tasks: to show how to run Supervisord program(s) when launching a one-off command with Docker. Please check the README file included to see how to run the example.
    • 22-supervisord-enable-program: to show how to enable program(s) in Supervisord program.
    • 23-supervisord-disable-program: to show how to disable Supervisord program(s).
  • Debugging:
    • 30-debug-with-gdb: Please check the README file included to see how to debug your PHP code with gdb.
    • 31-debug-with-valgrind: Please check the README file included to see how to debug your PHP code with Valgrind.
    • 32-debug-with-strace: Please check the README file included to see how to debug your PHP code with strace.

Image Variants

The openswoole/swoole images come in three flavors, each designed for a specific use case. In production environment, we suggest using the Alpine images.

1. latest, <swoole-version>, and <swoole-version>-php<php-version>

  • openswoole/swoole:latest
  • openswoole/swoole:4.12
  • openswoole/swoole:4.12-php8.0
  • openswoole/swoole:4.12.0-php8.0

This variant is based on the php:cli images, with a few changes. It uses Supervisord to manage booting processes, and has Composer preinstalled.

2. latest-dev, <swoole-version>-dev, and <swoole-version>-php<php-version>-dev

  • openswoole/swoole:latest-dev
  • openswoole/swoole:4.12-dev
  • openswoole/swoole:4.12-php8.0-dev
  • openswoole/swoole:4.12.0-php8.0-dev

This variant is very similar to the previous one, but it has extra tools added for testing, debugging, and monitoring purpose, including gdb, git, lsof, strace, tcpdump, Valgrind, and vim.

3. latest-alpine, <swoole-version>-alpine, and <swoole-version>-php<php-version>-alpine

  • openswoole/swoole:latest-alpine
  • openswoole/swoole:4.12-alpine
  • openswoole/swoole:4.12-php8.0-alpine
  • openswoole/swoole:4.12.0-php8.0-alpine

You can use this variant in the same way as using the php:alpine image, except that we changed the default working directory to /var/www. Also, we have Composer preinstalled in the image.

Note: We don't have development tools built in for Alpine images. There is no Docker images like openswoole/swoole:4.9.1-php8.1-alpine-dev.

Supported Tags and Respective Dockerfile Links

Versioned images (based on stable releases of Swoole)

Open Swoole 4.12

PHP Versions Default Images Dev Images Alpine Images
PHP 8.1 4.12.0-php8.1, 4.12-php8.1
4.12, latest
4.12.0-php8.1-dev, 4.12-php8.1-dev
4.12-dev, latest-dev
4.12.0-php8.1-alpine, 4.12-php8.1-alpine
4.12-alpine, latest-alpine
PHP 8.0 4.12.0-php8.0, 4.12-php8.0
4.12, latest
4.12.0-php8.0-dev, 4.12-php8.0-dev
4.12-dev, latest-dev
4.12.0-php8.0-alpine, 4.12-php8.0-alpine
4.12-alpine, latest-alpine
PHP 7.4 4.12.0-php7.4, 4.12-php7.4 4.12.0-php7.4-dev, 4.12-php7.4-dev 4.12.0-php7.4-alpine, 4.12-php7.4-alpine
PHP 7.3 4.12.0-php7.3, 4.12-php7.3 4.12.0-php7.3-dev, 4.12-php7.3-dev 4.12.0-php7.3-alpine, 4.12-php7.3-alpine
PHP 7.2 4.12.0-php7.2, 4.12-php7.2 4.12.0-php7.2-dev, 4.12-php7.2-dev 4.12.0-php7.2-alpine, 4.12-php7.2-alpine

Build Images Manually

The Docker images are built and pushed out automatically through Travis. If you want to build some image manually, please follow these three steps.

1. Install Composer packages. If you have command "composer" installed already, just run composer update -n.

2. Use commands like following to create dockerfiles:

./bin/generate-dockerfiles.php latest # Generate dockerfiles to build images from the master branch of Open Swoole.
./bin/generate-dockerfiles.php 4.12.0  # Generate dockerfiles to build images for Open Swoole 4.12.0.

3. Build Docker images with commands like:

docker build -t openswoole/swoole                     -f dockerfiles/latest/php8.0/cli/Dockerfile   .
docker build -t openswoole/swoole:4.12.0-php8.0        -f dockerfiles/4.12.0/php8.0/cli/Dockerfile    .
docker build -t openswoole/swoole:4.12.0-php8.0-alpine -f dockerfiles/4.12.0/php8.0/alpine/Dockerfile .

To build development images (where extra tools are included), add an argument DEV_MODE:

docker build --build-arg DEV_MODE=true -t openswoole/swoole:latest-dev       -f dockerfiles/latest/php8.0/cli/Dockerfile .
docker build --build-arg DEV_MODE=true -t openswoole/swoole:4.12.0-php8.0-dev -f dockerfiles/4.12.0/php8.0/cli/Dockerfile  .

Credits

Orignal implementation was done by Demin at Glu Mobile.