Docker Jan 01, 0001 简介 Docker 是 dotCloud 最近几个月刚宣布的开源引擎,旨在提供一种应用程序的自动化部署解决方案,简单的说就是,在 Linux 系统上迅速创建一个容器(类似虚拟机)并在容 ...
Docker acquires SDN startup SocketPlane Jan 01, 0001 At Socketplane we started out as four guys with a collectively strong belief in open source and open communities. We aligned around a shared vision that we wanted to be a critical part of Docker’s once in a decade disruption. Now that we are part of the Docker team, we couldn’t be happier. We never looked to hedge our bets, our success was and obviously still is tied to the success of Docker. ...
docker in tencent Jan 01, 0001 腾讯内部对Docker有着广泛的使用,其基于Yarn的代号为Gaia的调度平台可以同时兼容Docker和非Docker类型的应用,并提供高并 ...
docker internal Jan 01, 0001 docker-baseAbstractA subsystem is a module that makes use of the task grouping facilities provided by cgroups to treat groups of tasks in particular ways. A subsystem is typically a “resource controller” that schedules a resource or applies per-cgroup limits, but it may be anything that wants to act on a group of processes, e.g. a virtualization subsystem. “docker diff” is implemented by just scanning the container filesystem and the parent ...
git commit修改前一次提交的方法 Jan 01, 0001 方法一:用–amend选项 #修改需要修改的地方。 git add . git commit –amend 注:这种方式可以比较方便的保持原有的Change-Id,推荐使用。 方法 ...
Going Native with OpenStack Centric Applications: Murano Jan 01, 0001 Following on our previous discussion surveying the projects supporting applications within OpenStack, let’s continue our review with an in-depth look at the OpenStack-native Application Catalog: Murano, currently an incubation status project, having seen its functionality and core services integration advanced over the past few OpenStack releases. What is it? An application catalog developed by Mirantis, HP and others (now including Cisco), that allows application developers and ...
Hello World Jan 01, 0001 Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub. Quick Start Create a new post $ hexo new "My New Post" More info: Writing Run server $ hexo server More info: Server Generate static files $ hexo generate More info: Generating Deploy to remote sites $ hexo deploy More info: Deployment
How enable OpenStack allinone vm to access external network Jan 01, 0001 首先需要为OpenStack添加一个公网网络,假设All-in-one环境建的公网网段为10.10.10.0/24,公网网关为10.10.1 ...
How to disable ubuntu services Jan 01, 0001 To toggle a service from starting or stopping permanently you would need to: echo manual | sudo tee /etc/init/SERVICE.override where the stanza manual will stop Upstart from automatically loading the service on next boot. Any service with the .override ending will take precedence over the original service file. You will only be able to start the service manually afterwards. If you do not want this then simply delete the . ...
How to use docker compose to deploy a flask app Jan 01, 0001 The flask app is very simple, you have an index page where your can write and read comments. To start So what we need ? In my case a Digital Ocean droplet (I’m using Fedora 21). So, first of all we connect to our vm with ssh. Now that we are inside we need to install git, Docker and docker-compose. That’s all we need to play with Docker. This is our directory tree of our project, quietly standard as you can see. ...