标签:使用 image ons blank att 命令 代码 hda hello
这里就不赘述了,已经有很多教程了
我这利用的是 ohdata/swoole
我是管理员登录的,录是D:/workspace,在这里新建文件test_swoole_server.php,代码就是swoole官网的例子
1 <?php 2 $http = new swoole_http_server("0.0.0.0", 9501); 3 4 $http->on("start", function ($server) { 5 echo "Swoole http server is started at http://127.0.0.1:9501\n"; 6 }); 7 8 $http->on("request", function ($request, $response) { 9 $response->header("Content-Type", "text/plain"); 10 $response->end("Hello World\n".json_encode([‘hello‘=>‘nihao‘.time()])); 11 }); 12 13 $http->start();
运行命令
PS D:\workspace> docker run -ti -p 9501:9501 -v D:/workspace:/root/ -d ohdata/swoole:4.3.0 php /root/test_swoole_server.php
这样就成功了,容器已经跑起来了
进入容器,运行命令docker attach ID
,这个ID就是容器的ID,可以用命令docker container ps
查看容器ID
在浏览器执行 http://127.0.0.1:9501
,会看到返回hello world,swoole安装成功了
标签:使用 image ons blank att 命令 代码 hda hello
原文地址:https://www.cnblogs.com/friendwrite/p/10666194.html