
Docker
screaming
这个作者很懒,什么都没留下…
展开
-
Quickstart containers
This quickstart assumes you have a working installation of Docker. To verify Docker is installed, use the following command:# Check that you have a working install$ docker infoIf you get docker:转载 2015-12-28 22:07:38 · 307 阅读 · 0 评论 -
docker registry intro
Docker 3 -- 自建Docker Registry08 May 2014官方在Github上有一个项目 docker-registry, 专门用于自建Docker的Registry。上面的README讲得很详细简单的在dev模式下跑起来:首先将项目clone下来,然后进入docker-registry,复制一份配置文件出来:cp转载 2016-10-26 20:54:18 · 344 阅读 · 0 评论 -
docker file intro
Docker 2 -- 关于Dockerfile08 May 2014Dockerfile是一个镜像的表示,可以通过Dockerfile来描述构建镜像的步骤,并自动构建一个容器所有的 Dockerfile 命令格式都是:INSTRUCTION arguments虽然指令忽略大小写,但是建议使用大写。FROM 命令FROM转载 2016-10-26 20:53:01 · 358 阅读 · 0 评论 -
Docker - Brief intro
Docker 1 -- 开始08 May 2014 ## . ## ## ## == ## ## ## ## === /""""""""""""""""\___/ === ~~~ {~~转载 2016-10-26 20:43:32 · 436 阅读 · 0 评论 -
docker daemon run /bin/bash discussion
如何让docker以daemon方式运行/bin/bashdocker kapprentice 2014年03月05日提问关注 5 关注收藏 3 收藏,18.3k 浏览问题对人有帮助,内容完整,我也想知道答案0问题没有实际价值,缺少关键内容,没有改进余地请教各位达人一个关于doc转载 2016-10-26 20:35:37 · 459 阅读 · 0 评论 -
docker summary
Docker 4 -- 总结08 May 2014查看docker的子命令,直接敲docker或完整的docker help就可以了:root@tankywoo-docker:~# docker [1/1617]Usage: docker [OPTIONS] COMMAND [转载 2016-10-25 21:23:38 · 563 阅读 · 0 评论 -
docker redis
Redis is an open source key-value store that functions as a data structure server.Full DescriptionSupported tags and respectiveDockerfile links3.0.7, 3.0 (3.0/Dockerfile)3.0.7-转载 2016-10-25 21:20:30 · 893 阅读 · 0 评论 -
docker vs rtk
在 Swarm 被纳入 Docker 1.12后,Swarm 与 K8S 之争日趋白热化。本文作者 Adriaan de Jonge 身为 Xebia CTO ,专精 DevOps 及持续交付,曾为 Docker 摇旗呐喊三年的老司机,如今开始易帜。现在即使是最酷的产品也绑定于某个特定供应商。不管在过去的三年里,我曾多么热衷 Docker,但是现在,绑定的供应商开始动摇 Docker 在我转载 2016-09-17 08:53:40 · 2095 阅读 · 0 评论 -
Mac OS X Install Docker
Mac OS XNote: This release of Docker deprecates the Boot2Docker command line in favor of Docker Machine. Use the Docker Toolbox to install Docker Machine as well as the other Docker tools.转载 2015-12-27 16:18:17 · 519 阅读 · 0 评论 -
Best Practices for Writing Dockerfiles
Best practices for writing DockerfilesOverviewDocker can build images automatically by reading the instructions from aDockerfile, a text file that contains all the commands, in order, needed tobui转载 2015-12-29 16:58:57 · 623 阅读 · 0 评论 -
Docker Machine
Docker MachineMachine lets you create Docker hosts on your computer, on cloud providers, andinside your own data center. It automatically creates hosts, installs Docker onthem, then configures the转载 2015-12-29 16:30:20 · 508 阅读 · 0 评论 -
Docker Swarm Overview
Docker Swarm overviewDocker Swarm is native clustering for Docker. It turns a pool of Docker hostsinto a single, virtual Docker host. Because Docker Swarm serves the standardDocker API, any tool tha转载 2015-12-29 16:28:57 · 333 阅读 · 0 评论 -
Build Your Own Images
Build your own imagesDocker images are the basis of containers. Each time you’ve used docker runyou told it which image you wanted. In the previous sections of the guide youused Docker images that a转载 2015-12-29 10:32:44 · 787 阅读 · 0 评论 -
Run a simple application
Run a simple applicationIn the “Hello world in a container“ you launched yourfirst containers using thedocker run command. You ran an interactive container that ran in the foreground. You also r转载 2015-12-29 10:30:09 · 615 阅读 · 0 评论 -
Hello world in a container
Hello world in a containerSo what’s this Docker thing all about?Docker allows you to run applications, worlds you create, inside containers.Running an application inside a container takes a single转载 2015-12-29 10:27:16 · 337 阅读 · 0 评论 -
About Docker
About DockerDevelop, Ship and Run Any Application, AnywhereDocker is a platform for developers and sysadminsto develop, ship, and run applications. Docker lets you quickly assembleapplications fro转载 2015-12-29 10:26:00 · 287 阅读 · 0 评论 -
About the Docker Hub
About the Docker HubThe Docker Hub is a cloud-based registry service forbuilding and shipping application or service containers. It provides a centralized resource for containerimage discovery, dist转载 2015-12-29 10:25:25 · 490 阅读 · 0 评论 -
start redid-server with config
Start redis-server with config fileup vote5down votefavorite3I have my config file at:root/config/redis.rbI start redis like this: redis-serverH转载 2016-11-17 17:45:20 · 961 阅读 · 0 评论