09-29 15:10 日志 2020/09/29 #### docker php容器内安装 redis、swoole扩展 ```shell pecl install redis:5 docker-php-ext-enbale redis pecl install swoole:4 docker-php-ext-enbale ``` 版本可通过[http://pecl.php.net/https://pecl.php.net/package-search.php](http://pecl.php.net/https://pecl.php.net/package-search.php "http://pecl.php.net/https://pecl.php.net/package-search.php")搜索相关扩展,然后获取相关版本。 最后 可通过 `php --ri swoole` 查看 swoole 扩展版本以及其他相关信息。 #### docker 安装 redis ```shell docker pull redis:6 docker run -d -p 6379:6379 --name redis6 redis:6 ``` 镜像tag可通过[hub.docker.com](https://hub.docker.com/ "hub.docker.com")搜索镜像通过列表获取。启动后默认无密码。可通过一下命令添加密码。 ```shell docker exec -it redis6 bash redis-cli config set requirepass [password] ```