摘要: version: "3.8"services: redis: container_name: redis image: redis:alpine3.8 ports: - "6379:6379" volumes: - /Users/chen.yuhao/Desktop/lnmp/redis/redis 阅读全文
posted @ 2021-05-08 10:30 你脑子有bug 阅读(232) 评论(0) 推荐(0) 编辑
摘要: 安装xdebug扩展: 1.下载压缩包wget http://xdebug.org/files/xdebug-2.5.5.tgznote:提前查询版本 要适配PHP版本 我目前的版本是5.6 PHP7注意安装xdebug-2.7.2.tgz 2.解压并进去tar zvxf xdebug-2.7.2. 阅读全文
posted @ 2021-05-08 10:29 你脑子有bug 阅读(453) 评论(0) 推荐(0) 编辑
摘要: 环境安装:1. 安装brew /bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)" 2.安装docker$ brew install --cask --appdir=/Applic 阅读全文
posted @ 2021-05-08 10:27 你脑子有bug 阅读(369) 评论(0) 推荐(0) 编辑
摘要: docker compose 使用:#查看帮助docker-compose -h # -f 指定使用的 Compose 模板文件,默认为 docker-compose.yml,可以多次指定。 docker-compose -f /Users/chen.yuhao/Desktop/soft/docke 阅读全文
posted @ 2021-05-08 10:26 你脑子有bug 阅读(126) 评论(0) 推荐(0) 编辑
摘要: docker 安装 lnmp环境 一。下载镜像:mysql: docker pull mysql 5.7 docker pull jiangqiao/php5.6-fpm-banban php: docker pull php 5.6nginx: docker pull nginx 二:启动容器:m 阅读全文
posted @ 2021-05-08 10:23 你脑子有bug 阅读(101) 评论(0) 推荐(0) 编辑