Docker
文章平均质量分 55
HeatDeath
Learn by doing!
展开
-
Docker for Windows 中文文档(1)——Explore the application and run examples
Get started with Docker for Windows欢迎来到Docker for Windows!Docker是用于创建集装箱应用程序的完整开发平台,Docker for Windows是在Windows系统上开始使用Docker的最佳方式。检查Docker Engine,Compose和Machine的版本启动您最喜欢的shell(cmd.exe,PowerShell或其他)来检原创 2017-04-21 14:42:33 · 1781 阅读 · 0 评论 -
Docker 入门实践与国内 docker 镜像
1、Docker 入门实践 https://cloud.tencent.com/developer/article/10059042、Docker 极速下载 http://get.daocloud.io/原创 2018-05-08 18:17:56 · 300 阅读 · 0 评论 -
在 Windows 上通过 Kitematic 使用 Docker
https://linux.cn/article-6131-1.html#3_3279在本篇文章中,我们会学习如何在 Windows 操作系统上安装 Kitematic 以及部署一个测试性的 Nginx Web 服务器。Kitematic 是一个具有现代化的界面设计的自由开源软件,它可以让我们在 Docker 中交互式执行任务。Kitematic 设计的非常漂亮、界面美观。使用它,我们可以...转载 2018-05-08 18:15:58 · 12597 阅读 · 2 评论 -
Docker下安装 Logstash+Elasticsearch+Kibana 的方法
记一次Docker下安装Logstash+Elasticsearch+Kibana经历 前言最近遇到一个困惑,在kibana上捞客户端用户行为相关的数据,无奈无法提取一个字段中的kv值。作为一个移动开发人员,对这种东西简直就是日了狗了,请教了下公司推荐组的人,也没有得到结果,靠人不如靠自己...转载 2018-05-07 19:40:42 · 1395 阅读 · 0 评论 -
Docker 运行 RabbitMQ 容器的方法
参考资料:1、使用docker安装rabbitmq及遇到的问题 https://blog.csdn.net/qq_35981283/article/details/696481712、Docker实战:Docker安装部署RabbitMQ https://blog.csdn.net/liyuejin/article/details/78410586...原创 2018-05-07 19:39:40 · 3574 阅读 · 0 评论 -
Docker 运行 MySQL 容器的方法
Docker运行Mysql实例 Docker 官网 MYsql镜像运用https://hub.docker.com/_/mysql/Docker基本命令及获取mysql镜像请参考:http://blog.csdn.net/xiaolyuh123/article/details...转载 2018-05-07 19:38:09 · 1859 阅读 · 0 评论 -
ERROR 2059 (HY000): Authentication plugin 'caching_sha2_password' cannot be loaded
问题: 连接Docker启动的mysql出现:ERROR 2059 (HY000): Authentication plugin ‘caching_sha2_password’ cannot be loaded C:\mysqldata>mysql -h 127.0.0.1 -P 13306 -uroot -p Enter password: ** ERROR ...原创 2018-05-07 15:56:32 · 6278 阅读 · 0 评论 -
Docker 拉取镜像报错 net/http: TLS handshake timeout 的解决办法
net/http: TLS handshake timeout切换 docker 镜像源可破切换为国内 daocloud 为镜像源http://f2d6cb40.m.daocloud.io参考资料:1、解决centos7下拉取镜像时报错:net/http: TLS handshake timeout https://blog.csdn.net/banche1...原创 2018-05-07 15:51:36 · 5016 阅读 · 0 评论 -
Docker not running on windows 10 error: Hardware assisted virtualization and data execution protecti
Docker not running on windows 10 error: Hardware assisted virtualization and data execution protection must be enabled in the BIOSDocker 启动异常的解决办法启动BIOS的虚拟化设置 | 开启CPU虚拟化支持 https://jingyan.bai...原创 2018-05-07 13:49:36 · 2297 阅读 · 0 评论 -
利用 Docker 在一台机器上部署多个 Redis 实例
docker run -p 20001:6379 -d redis redis-server --appendonly yesdocker run -p 20002:6379 -d redis redis-server --appendonly yesdocker run -p 20003:6379 -d redis redis-server --appendonly yesdocker r...原创 2018-05-18 14:49:16 · 6104 阅读 · 0 评论 -
Docker 报错 error during connect: Get pipe/docker_engine: The system cannot find the file specified.
error during connect: Get http://%2F%2F.%2Fpipe%2Fdocker_engine/v1.37/version: open //./pipe/docker_engine: The system cannot find the file specified. In the default daemon configuration on Windows...原创 2018-05-17 10:23:42 · 17787 阅读 · 4 评论 -
Get started with Docker 中文文档(1)——Part 1: Orientation and Setup
和 Docker for Windows 中文文档(1)——Explore the application and run examples 中的内容差不多,不再赘述Get Started, Part 1: Orientation and Setup原创 2017-04-22 15:04:54 · 1120 阅读 · 0 评论 -
Get started with Docker 中文文档(3)—— Part 3: Services
先决条件安装Docker 1.13或更高版本。阅读第1部分的方向。了解如何在第2部分中创建容器。确保已按照指示将您创建的容器推送到注册表; 我们将在这里使用它。通过运行此操作并访问http:// localhost /(在您的信息中插入用户名,repo和标签)确保您的图像正常工作:docker run -p 80:80 username/repo:tag介绍在第3部分中,我们扩展了应用程原创 2017-04-22 16:18:19 · 745 阅读 · 0 评论 -
Get started with Docker 中文文档(2)——Part 2: Containers
先决条件安装Docker 1.13或更高版本。阅读第1部分的方向。让您的环境快速测试,以确保您全部设置:docker run hello-world介绍现在是开始构建Docker应用程序的时候了。 我们将从这样一个应用程序的层次结构的底部开始,这是一个容器,我们在这个页面上介绍。 在这个层次之上是一个服务,它定义了容器在生产中的行为方式,涵盖在第3部分中。最后,顶层是堆栈,定义了所有服务的交原创 2017-04-22 16:05:55 · 1002 阅读 · 1 评论 -
Docker for Windows 中文文档(3)——Docker Settings
Docker设置Docker运行时,显示Docker鲸鱼。 默认情况下,Docker鲸鱼图标被放置在“通知”区域中。 如果隐藏,单击任务栏上的向上箭头显示。 提示:您可以将鲸鱼固定在通知框外面,使其始终在任务栏上可见。 为此,拖放鲸鱼图标。 或者,右键单击任务栏的空白部分,选择设置,然后通过任务栏设置为通知选择显示选项。要获取具有应用程序选项的弹出菜单,请右键单击鲸鱼: 注意:上面的示例显原创 2017-04-22 14:44:52 · 10962 阅读 · 1 评论 -
Docker for Windows 中文文档(2)——Set up tab completion in PowerShell
在PowerShell中设置 tab 完成如果您希望为Docker命令提供方便的选项卡完成,可以按如下方式安装posh-docker PowerShell模块。1. 启动“elevated”PowerShell(即以管理员身份运行)。为此,请搜索PowerShell,右键单击,然后选择以管理员身份运行。 当系统询问您是否允许此应用更改您的设备时,单击是。2. 设置脚本执行策略,以允许由受信任的发布原创 2017-04-22 14:23:48 · 2257 阅读 · 0 评论 -
Docker 报错 Error with pre-create check: "Get https://github-production-release-asset-2e
1、关闭 Hyper-V2、忘了…参考资料:1、error during connect: Get http://%2F%2F.%2Fpipe%2Fdocker_engine/v1.28/version: open //./pipe/docker_https://blog.csdn.net/fanfan4569/article/details/713405562、Inval...原创 2018-05-16 20:00:41 · 9090 阅读 · 0 评论