Simple docker image to build your applications based on Swoole PHP extension.
3.2K
Simple docker image to build your applications based on Swoole PHP extension. Sources.
Versions:
Notice:
Every week at 00:00 on Sunday (UTC) Docker images automatically rebuilds.
docker run --rm -it --init -p 8080:8080 roquie/docker-swoole-webapp
Example 1:
FROM roquie/composer-parallel
COPY . /app
RUN composer install --no-ansi --no-dev --no-interaction --no-progress --no-scripts --optimize-autoloader --ignore-platform-reqs
FROM roquie/docker-swoole-webapp
COPY --from=0 /app /app
CMD ["php", "index.php"]
Example 2:
FROM roquie/docker-swoole-webapp
COPY . /app
CMD ["php", "index.php"]
MIT.
Content type
Image
Digest
Size
58.2 MB
Last updated
about 7 years ago
docker pull roquie/docker-swoole-webapp