博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
About the Docker Hub
阅读量:4031 次
发布时间:2019-05-24

本文共 3187 字,大约阅读时间需要 10 分钟。

About the Docker Hub

The is a cloud-based registry service forbuilding and shipping application or service containers. It provides a centralized resource for containerimage discovery, distribution and change management, user and teamcollaboration, and workflow automation throughout the development pipeline.

Getting started with Docker Hub

Specifically, Docker Hub provides the following major features and functions:

  • : Find, manage, and push and pull images from community, official, and private image libraries.
  • : Automatically create new images when you make changes to a source GitHub or Bitbucket repository.
  • : A feature of Automated Builds, Webhooks let you trigger actions after a successful push to a repository.
  • : Create work groups to manage user access to image repositories.
  • GitHub and Bitbucket Integration: Add the Hub and your Docker Images to your current workflows.

Create a Docker Hub account

To explore Docker Hub, you’ll need to create an account by following thedirections in . You can create an account and use the Hub with one private repo for free. If you need more private repos, you can upgrade from your free account to a paid plan. To learn more, log in to the Hub and go to , which you access via the Settings menu (gear icon at upper right).

Work with Docker image repositories

The Docker Hub provides you and your team with a place to build and ship Docker images.

You can configure Docker Hub repositories in two ways:

  • , which allow you to push images at will from your local Docker daemon to the Hub, and
  • , which allow you to configure GitHub or Bitbucket totrigger the Hub to rebuild repositories when changes are made to the repository.

You can create public repositories which can be accessed by any other Hub user, or you can create private repositories with limited access you control.

Docker commands and Docker Hub

Docker itself provides access to Docker Hub services via the ,, , and commands.

Explore repositories

There are two ways you can search for public repositories and images availableon the Docker Hub. You can “Search” on the Docker Hub website, oryou can docker search for all the repositories and images using the Docker commandlinetool:

$ docker search ubuntu

Both will show you a list of the currently available public repositories on theDocker Hub which match the provided keyword.

A private repository won’t be listed in the repositorysearch results. To see all the repositories you can access and their status,view your “Dashboard” page on .

You can find more information on working with Docker images in the .

Use Official Repositories

The Docker Hub contains a number of . These are public,certified repositories from vendors and contributors to Docker. Theycontain Docker images from vendors like Canonical, Oracle, and Red Hatthat you can use as the basis to building your applications and services.

With Official Repositories you know you’re using an optimized andup-to-date image that was built by experts to power your applications.

Note:If you would like to contribute an Official Repository for yourorganization or product, see the documentation on for more information.

Create organization

a Docker Hubaccount and manage your organizations and teams.

转载地址:http://knhbi.baihongyu.com/

你可能感兴趣的文章
2017阿里内推笔试题--算法工程师(运筹优化)
查看>>
python自动化工具之pywinauto(零)
查看>>
python一句话之利用文件对话框获取文件路径
查看>>
PaperDownloader——文献命名6起来
查看>>
PaperDownloader 1.5.1——更加人性化的文献下载命名解决方案
查看>>
如何将PaperDownloader下载的文献存放到任意位置
查看>>
C/C++中关于动态生成一维数组和二维数组的学习
查看>>
系统架构:Web应用架构的新趋势---前端和后端分离的一点想法
查看>>
JVM最简生存指南
查看>>
漂亮的代码,糟糕的行为——解决Java运行时的内存问题
查看>>
Java的对象驻留
查看>>
自己动手写GC
查看>>
Java 8新特性终极指南
查看>>
logback高级特性使用(二) 自定义Pattern模板
查看>>
JVM并发机制探讨—内存模型、内存可见性和指令重排序
查看>>
可扩展、高可用服务网络设计方案
查看>>
如何构建高扩展性网站
查看>>
微服务架构的设计模式
查看>>
持续可用与CAP理论 – 一个系统开发者的观点
查看>>
nginx+tomcat+memcached (msm)实现 session同步复制
查看>>