├── .gitignore ├── 1.x-lts └── Dockerfile ├── 2.x-lts └── Dockerfile ├── README.md ├── docker-compose.yml ├── inotify └── Dockerfile ├── master └── Dockerfile ├── mysql ├── Dockerfile └── mysqld.cnf ├── mysql5 ├── Dockerfile └── mysqld.cnf ├── redis ├── Dockerfile └── redis.conf └── release └── Dockerfile /.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /1.x-lts/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twose/swoole-docker/HEAD/1.x-lts/Dockerfile -------------------------------------------------------------------------------- /2.x-lts/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twose/swoole-docker/HEAD/2.x-lts/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twose/swoole-docker/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twose/swoole-docker/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /inotify/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twose/swoole-docker/HEAD/inotify/Dockerfile -------------------------------------------------------------------------------- /master/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twose/swoole-docker/HEAD/master/Dockerfile -------------------------------------------------------------------------------- /mysql/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twose/swoole-docker/HEAD/mysql/Dockerfile -------------------------------------------------------------------------------- /mysql/mysqld.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twose/swoole-docker/HEAD/mysql/mysqld.cnf -------------------------------------------------------------------------------- /mysql5/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twose/swoole-docker/HEAD/mysql5/Dockerfile -------------------------------------------------------------------------------- /mysql5/mysqld.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twose/swoole-docker/HEAD/mysql5/mysqld.cnf -------------------------------------------------------------------------------- /redis/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twose/swoole-docker/HEAD/redis/Dockerfile -------------------------------------------------------------------------------- /redis/redis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twose/swoole-docker/HEAD/redis/redis.conf -------------------------------------------------------------------------------- /release/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twose/swoole-docker/HEAD/release/Dockerfile --------------------------------------------------------------------------------