上一页 1 2 3 4 5 6 7 8 9 ··· 11 下一页
摘要: 1.将 docker中的文件 copy 出来(容器外执行) docker cp 6cc4e747f152:/home/test.php /home 阅读全文
posted @ 2021-08-09 20:48 CanyingV 阅读(148) 评论(0) 推荐(0) 编辑
摘要: 查看容器日志 (容器需要运行) docker logs -tf --tail 10 容器id 查看容器中的进程 docker top 容器id 查看元数据 docker inspect 容器id 阅读全文
posted @ 2021-08-05 21:56 CanyingV 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 1. 查看本地镜像列表 docker images 2. 从 docker hub 上搜索镜像 docker search mysql(镜像名称) 3.下载镜像 docker pull mysql(镜像名称) docker pull mysql:5.7(指定版本,默认最新版) 4. 删除镜像 doc 阅读全文
posted @ 2021-08-04 22:08 CanyingV 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 1. 安装依赖 sudo yum install -y yum-utils 2. 配置阿里镜像 yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo 3. 安装 do 阅读全文
posted @ 2021-08-03 21:47 CanyingV 阅读(22) 评论(0) 推荐(0) 编辑
摘要: //获取请求参数 get|post $data['get']=\PhalApi\DI()->request->get('city_id'); //获取客户端ip $data['ip'] = \PhalApi\Tool::getClientIp(); //根目录 $data['root_path'] 阅读全文
posted @ 2021-07-22 16:02 CanyingV 阅读(36) 评论(0) 推荐(0) 编辑
摘要: //日志 // \PhalApi\DI()->logger->error('fail to insert DB', 'error'); // \PhalApi\DI()->logger->info('fail to insert DB', 'test'); // \PhalApi\DI()->log 阅读全文
posted @ 2021-07-22 16:01 CanyingV 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 1.di.php // 缓存 - Memcache/Memcached // $di->cache = new \PhalApi\Cache\MemcacheCache(\PhalApi\DI()->config->get('sys.mc'));; //redis缓存 // $di->cache = 阅读全文
posted @ 2021-07-22 15:59 CanyingV 阅读(66) 评论(0) 推荐(0) 编辑
摘要: $where = ['a.module_id' => $module_id, 'b.city_id' => $city_id];if ($title) { $where['b.name like ?'] = '%' . $title . '%';}$model = GoodsModel::notor 阅读全文
posted @ 2021-07-22 15:56 CanyingV 阅读(55) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2021-04-21 17:52 CanyingV 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 我们可以从上传视频中截取固定时间点的帧,以作为这些视频的封面图片。视频截图如下所示: http://<your_uploaded_video>?vframe/jpg/offset/5 阅读全文
posted @ 2021-04-01 17:43 CanyingV 阅读(280) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 11 下一页