
Docker
12Dong
这个作者很懒,什么都没留下…
展开
-
【Docker】使用volume挂载的一些限制
背景故事dockerfile volume局限另辟蹊径解决方法背景故事在gitlab-ci中使用acme.sh生成证书的时候,遇上了一些和挂载有关的问题。acme.sh这个开源软件的stateless模式会根据本机的一份配置文件生成一份密文,让服务器特殊接口返回这份密文用以验证域名的所有权,之后会生成一张https证书以供这个域名使用。同时,如果在另外一台机器上的话,就会生成另外一份...原创 2020-04-06 10:43:23 · 1044 阅读 · 0 评论 -
【Docker】了解Docker
Docker用来干什么?1.可视作一个集装箱,用来打包程序,生产环境等一系列,能让应用跑起来的东西 2.标准化,将运输过程和存储过程标准化,并提供一些API接口 3.隔离,如果共用服务器的话,能将各个程序猿之间的生产环境隔离开开举个例子一个程序能在程序猿本地跑起来,但当产品上线应用就跑不起来了,因为应用执行的环境不同了,比如说操作系统、JDK或其他东西,这个时候,用Docker即...原创 2018-06-17 16:06:51 · 400 阅读 · 0 评论 -
【Docker】Nginx镜像拉取使用
先说环境是macOs本来想不Hello-world 直接Nginx镜像拉取使用首先是使用docker pull hub.c.163.com/library/nginx把Nginx镜像拉去下来就这样 hub.c.163.com/library/nginx这个话 可以从网易,阿里镜像仓库哪里取得具体方法:百度XXdocker镜像仓库,进入对应的docker仓库,搜索对应镜像把后面的网址拉下...原创 2018-06-17 20:22:16 · 3945 阅读 · 3 评论 -
【Docker】从 SpringBoot 到 Docker部署
本文主要讲述从一个Springboot开发的Java-web如何被docker打成镜像,并且发布到服务器上面去。为什么要制成docker镜像的好处,在docker的上一遍文档已经讲过了,这里不再累述。Springboot的Java-web到docker镜像自我感觉比SSM制成镜像简单。我使用的环境是Idea + Mac + Docker 好,下面开始正文 正常的开始一个Sprin...原创 2018-08-04 00:32:05 · 823 阅读 · 0 评论 -
【翻译】Understand how Docker works in the VM-based IT world
原文地址Docker, a household name in IT, is still far from mainstream adoption, although it has gained a degree of traction in enterprises. With mounting acceptance, your organization can't avoid containe...翻译 2018-11-21 16:11:55 · 271 阅读 · 0 评论 -
【翻译】How is Docker different from a virtual machine? [closed]
原本地址`I keep rereading the Docker documentation to try to understand the difference between Docker and a full VM. How does it manage to provide a full filesystem, isolated networking environment, etc....翻译 2018-11-22 16:07:12 · 295 阅读 · 0 评论 -
【Docker】An Updated Performance Comparison of Virtual Machines and Linux Containers 专有名词解释
KVM: (英语:Kernel-based Virtual Machine),中文为基于内核的虚拟机。是一种基于Linux内核中的虚拟化基础设施,可以将Linux内核转换为一个虚拟机监视器。OpenStack:是基础设施即服务软件(IAAS),让任何人可以自行建立及提供云端运算服务。IPC:Inter-process communication, the sharing of data acr...原创 2019-05-17 18:51:33 · 579 阅读 · 0 评论