docker中ubuntu容器php语言hyperf框架开发环境搭建。
docker地址:Docker
tag:20.04
docker pull ubuntu:20.04
docker run --name hyperf -v D:\workspace\docker\hyperf:/wj/hyperf -p 9501:9501 -it --privileged -u root --entrypoint /bin/sh ubuntu:20.04
步骤:
1、更新
2、换源
3、php安装
4、composer安装 (可宿主机处理)
5、hyperf 安装 composer 或 git(可宿主机处理)
6、运行测试
1、更新、换源
教程:Ubuntu20.04更换镜像源_ubuntu20.04换源_Erictr的博客-CSDN博客
#阿里
deb http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ focal-proposed main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal-proposed main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiverse
————————————————
版权声明:本文为CSDN博主「Erictr」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/Erictr/article/details/121729194
apt-get update
apt-cache search vim
apt-get install vim
cp /etc/apt/sorces.list /etc/apt/sources_back.list
cd /etc/apt
vi sources.list
apt-cache search php7.4
2、php安装
根据GitHub - hyperf/hyperf-docker: 🐳 The docker image offered by Hyperf.
建议安装的php model
[PHP Modules]
bcmath
Core
ctype
curl
date
dom
fileinfo
filter
gd
hash
iconv
igbinary
json
libxml
mbstring
mysqlnd
openssl
pcntl
pcre
PDO
pdo_mysql
pdo_sqlite
Phar
posix
readline
redis
Reflection
session
SimpleXML
sockets
sodium
SPL
standard
sysvmsg
sysvsem
sysvshm
tokenizer
xml
xmlreader
xmlwriter
Zend OPcache
zip
zlib
[Zend Modules]
Zend OPcache
apt-get -y install php7.4 php7.4-dev php7.4-fpm php7.4-mysql php7.4-curl php7.4-json php7.4-mbstring php7.4-bcmath php7.4-xml php7.4-zip
apt-get install php-redis php7.4-gd
#swoole安装
cd /usr/src
gti clone -b v4.8.13 https://gitee.com/swoole/swoole.git
cd swoole
phpize
./configure
make
make install
#编译结果
Installing shared extensions: /usr/lib/php/20190902/
Installing header files: /usr/include/php/20190902/
find / -name php.ini
#ini位置
/etc/php/7.4/cli/php.ini
/etc/php/7.4/fpm/php.ini
cd /etc/php/7.4/cli
#扩展加
vi php.ini
extension=swoole.so
php --ri swoole #查扩展信息
php -m #查扩展内容
gitee上写swoole v5.0..3是 php7.2版本以上,使用的话然后make会报错,要求8.0以上,所以使用v4.8.13。
hyperf 2.2 要求swoole 4.5以上、php 7.4以上。
hyperf 2.2 要求swoole 4.5以上、php 8.0以上。
之所以使用gitee是因为github请求不到……幸亏gitee上有。
docker 有个镜像 hyperf/hyperf ,简单点可以用这个,但是这个版本对应的php版本比较低。目前我用的php版本都是7.4 ,所以重新搭一个。
可以使用docker不同标签,但是这个镜像在docker hub 中没找到。
3、安装及运行
gitee和composer都有对应项目,但是文件不太一样,学习的话最好根据文档走。
gitee中bin/hyperf.php不存在,估计启动方式不太一样,所以使用composer。
cd /wj/hyperf
composer create-project hyperf/hyperf-skeleton:v2.2.3 hyperfpro2
#改swoole短命名
vi php.ini
#末尾
[swoole]
swoole.use_shortname = 'Off'
#启动
cd /wj/hyperf/hyperfpro2
php bin/hyperf.php start
启动成功后会提示0.0.0.0:9501,宿主机127.0.01:9501可查看。
若端口有问题可能为端口占用,或者docker端口没暴露给宿主机。
相关链接
hyperf官网:Hyperf | 一款高性能的企业级协程框架,特别适用于微服务架构、中间件、Web系统、API 系统的构建,由 Swoole 和 Swow 引擎提供底层支持
hyperf 文档官网:Hyperf
github:GitHub - hyperf/hyperf: 🚀 A coroutine framework that focuses on hyperspeed and flexibility. Building microservice or middleware with ease.
gitee:hyperf: Hyperf 是基于 Swoole 4.5+ 实现的高性能、高灵活性的 PHP 持久化框架,特别适用于微服务和中间件的开发
composer:hyperf/hyperf-skeleton - Packagist
视频教程:识沃科技的个人空间-识沃科技个人主页-哔哩哔哩视频