Perfect Swoole Dockerfile for senior developers.
100K+
docker pull twosee/swoole-coroutine
docker pull twosee/swoole-coroutine:mysql
docker pull twosee/swoole-coroutine:redis
docker run -d --name=swoole \
-v /workdir:/workdir \
-p 9501:9501 \
twosee/swoole-coroutine \
php /app/server.php start
OR
docker-compose up
MySQL, Redis, Inotify, 配合docker-compose, 实现开箱即用 MySQL, Redis, Inotify images, you can also use docker-compose, Out of the box.| DIR | INTRO | Tag |
|---|---|---|
| /master | Latest master version (Experimental type) | latest |
| /mysql | It's a perfect MySQL8's docker | mysql |
| /mysql5 | It's a perfect MySQL5's docker | mysql5 |
| /redis | It's a perfect Redis's docker | redis |
| /inotify | inotify, composer, git, node, to support hot updates | inotify |
| /release | Latest release version | release |
| /1.x-lts | Latest version from branch 1.x-lts | 1.x-lts |
| /2.x-lts | Latest version from branch 1.x-lts | 2.x-lts |
Swoole + mysql + redis
version: '3.4'
services:
swoole:
image: "twosee/swoole-coroutine"
ports:
- "9501:9501"
volumes:
- ./src:/app/src:rw
restart: always
depends_on:
- mysql
command: php /app/src/server.php start
mysql:
image: "twosee/swoole-coroutine:mysql"
ports:
- "9502:3306"
volumes:
- ./data/mysql/data:/var/lib/mysql:rw
- ./data/mysql/sock:/var/run/mysqld:rw # remove when windows.
restart: always
environment:
MYSQL_ROOT_PASSWORD: root_password_here
MYSQL_DATABASE: test
MYSQL_USER: php
MYSQL_PASSWORD: php_user_password_here
redis:
image: "twosee/swoole-coroutine:redis"
ports:
- "9503:6379"
volumes:
- ./data/redis/data:/var/lib/redis:rw
sysctls:
net.core.somaxconn: 65535
restart: always
inotify:
image: "twosee/swoole-coroutine:inotify"
volumes:
- ./:/app:rw
restart: always
environment:
APP_ENV: dev # or product
working_dir: /app/util
command: /bin/bash inotify.sh
You can see mysqld.cnf.
$options = [
'host' => 'mysql', //So there.
'port' => 3306,
'user' => 'php',
'password' => 'php_user_password_here',
'database' => 'test'
];
$db = new \Swoole\Coroutine\Mysql();
$db->connect($options);
You can see redis.conf.
$redis = new \Swoole\Coroutine\Redis();
$redis->connect('redis', 6379);
$val = $redis->get('foo');
Content type
Image
Digest
Size
302.7 MB
Last updated
over 7 years ago
docker pull twosee/swoole-coroutine