Docker 官网信息

Docker Engine

Docker-for-linux
https://docs.docker.com/engine/installation/linux/rhel/
https://docs.docker.com/engine/installation/linux/centos/
https://docs.docker.com/engine/installation/linux/ubuntulinux/
Docker-for-windows
https://docs.docker.com/docker-for-windows/

CS Docker Engine   
https://docs.docker.com/cs-engine/install/


Docker Compose
Compose是用于定义和运行复杂Docker应用的工具
Install : https://docs.docker.com/compose/install/
Command :
# curl -L https://github.com/docker/compose/releases/download/1.8.0/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose
# chmod +x /usr/local/bin/docker-compose
# docker-compose --version

Universal Control Plane overview  (付费)
https://docs.docker.com/ucp/overview/
https://docs.docker.com/ucp/installation/install-production/

Docker Trusted Registry overview (付费) 
https://docs.docker.com/docker-trusted-registry/install/

Docker Cloud

Docker Hub
Docker Hub is a cloud-based registry service which allows you to link to code repositories,

build your images and test them, stores manually pushed images, and links to Docker Cloud so you can deploy images to your hosts.

Docker Machine

Docker Store

Docker Toolbox
Docker Toolbox is an installer for quick setup and launch of a Docker environment on older Mac and Windows systems

Docker Swarm

Docker Registry (Image仓库)
$ docker run -d -p 5000:5000 --name registry registry:2
$ docker pull ubuntu
$ docker tag ubuntu localhost:5000/myfirstimage
$ docker push localhost:5000/myfirstimage

Docker Notary

Docker Weave (跨主机通信)

 

 

Kubernetes is an open-source system for automating deployment, scaling, and management of containerized applications.

 

 

 

posted on 2016-10-11 16:09  baxk2001  阅读(254)  评论(0编辑  收藏  举报

导航