摘要:
docker概念了解 docker镜像、容器、仓库的基本概念 镜像 1. Docker 镜像就是一个只读的模板。 例如:一个镜像可以包含一个完整的 CentOS 操作系统环境,里面仅安装了 httpd或用户需要的其它应用程序。 2. 镜像可以用来创建 Docker 容器。 3. Docker 提供了 阅读全文
posted @ 2017-08-06 17:28
IT笨男孩
阅读(228)
评论(0)
推荐(0)
摘要:
条件查询 逻辑关系:$gt 大于 $lt 小于 $gte 大于或等于 $lte 小于等于 $ne 不等于 $in,$nin $exists 验证一个元素是否存在 1. and 和 or结合使用: and 与 or 都是数组的格式。 2. sort 排序: 1代表升序 1代表降序 3. 过滤出指定属性 阅读全文
posted @ 2017-08-06 17:27
IT笨男孩
阅读(181)
评论(0)
推荐(0)
摘要:
nexus安装与使用: Windows安装: 1、下载https://www.sonatype.com/oss thank you zip 2、解压:F:\software\nexus\nexus 2.14.4 03 bundle 3、环境变量配置:path里添加:F:\software\nexus 阅读全文
posted @ 2017-08-06 10:05
IT笨男孩
阅读(342)
评论(0)
推荐(0)
摘要:
GIT的基本命令 远程仓库相关命令 检出仓库:$ git clone git://github.com/jquery/jquery.git 查看远程仓库:$ git remote v 添加远程仓库:$ git remote add [name] [url] 删除远程仓库:$ git remote r 阅读全文
posted @ 2017-08-06 10:03
IT笨男孩
阅读(185)
评论(0)
推荐(0)