An open source trusted cloud native registry project that stores, signs, and scans content.
Go to file
Deshi Xiao 6c6a694668 Fix: sed compatible with mac os env
sed -i need explicit extention on mac, but linux is optinoal.
so for developer need a compatible request on macos
2016-05-17 14:21:23 +08:00
.github provide issue template 2016-04-22 15:04:29 +08:00
api Revert "introduce workerpool to handle jobs" 2016-05-13 14:49:12 +08:00
auth adapt to other ldap servers 2016-04-25 19:00:36 +08:00
contrib Rename 2016-04-22 18:03:40 +08:00
controllers make a combination in if condition 2016-05-10 10:58:43 +08:00
dao Revert "introduce workerpool to handle jobs" 2016-05-13 14:49:12 +08:00
Deploy Merge pull request #197 from nagarjung/master 2016-05-13 18:33:11 +08:00
docs Fix: sed compatible with mac os env 2016-05-17 14:21:23 +08:00
migration fix bugs 2016-05-09 18:50:04 +08:00
models Revert "introduce workerpool to handle jobs" 2016-05-13 14:49:12 +08:00
service add logs 2016-04-29 17:22:17 +08:00
static Merge remote-tracking branch 'origin/master' into feature/accesslog 2016-04-27 20:38:04 +08:00
ui update changepassword to /api/users/:id/password 2016-04-20 22:27:47 -07:00
utils guarantee the read-write operation for cache token is atomic 2016-05-13 16:09:43 +08:00
vendor switch to /vendor, remove docker/distribution docker/libtrust go-sql-driver/mysql, and update Dockerfile to use go get to download these packages. 2016-02-19 13:01:58 +08:00
views changge head_content tpl 2016-05-10 11:07:10 +08:00
.gitignore add data migration module 2016-05-09 14:41:28 +08:00
.travis.yml bump up go version in travis.yml 2016-05-04 14:25:54 +08:00
AUTHORS update docs 2016-04-14 17:40:03 +08:00
Dockerfile.ui bump to golang 1.6.2 image to fix compilation error 2016-05-04 14:18:52 +08:00
favicon.ico added favicon.ico for Harbor 2016-03-11 14:34:56 +08:00
LICENSE update README, LICENSE, and bump to registry/2.3.0 2016-03-01 18:21:56 +08:00
NOTICE add NOTICE, update README.md 2016-03-03 10:15:12 +08:00
README.md Updated README to include German 2016-04-27 06:39:37 +02:00

Harbor

Build Status

alg tag

Project Harbor is initiated by VMware China R&D as a Cloud Application Accelerator (CAA) project. CAA provides a set of tools to improve the productivity of cloud developers in China and other countries. CAA includes tools like registry server, mirror server, decentralized image distributor, etc.

Project Harbor is an enterprise-class registry server. It extends the open source Docker Registry server by adding more functionalities usually required by an enterprise. Harbor is designed to be deployed in a private environment of an organization. A private registry is important for organizations who care much about security. In addition, a private registry improves productivity by eliminating the need to download images from the public network. This is very helpful to container users who do not have a good network to the Internet.

Features

  • Role Based Access Control: Users and docker repositories are organized via "projects", a user can have different permission for images under a namespace.
  • Graphical user portal: User can easily browse, search docker repositories, manage projects/namespaces.
  • AD/LDAP support: Harbor integrates with existing AD/LDAP of the enterprise for user authentication and management.
  • Auditing: All the operations to the repositories are tracked and can be used for auditing purpose.
  • Internationalization: Localized for English, Chinese and German languages. More languages can be added.
  • RESTful API: RESTful APIs are provided for most administrative operations of Harbor. The integration with other management softwares becomes easy.

Getting Started

Harbor is self-contained and can be easily deployed via docker-compose. The below are quick-start steps. Refer to the Installation and Configuration Guide for detail information.

System requirements:
Harbor only works with docker 1.10+ and docker-compose 1.6.0+ . The host must be connected to the Internet.

  1. Get the source code:

    $ git clone https://github.com/vmware/harbor
    
  2. Edit the file Deploy/harbor.cfg, make necessary configuration changes such as hostname, admin password and mail server. Refer to Installation and Configuration Guide for more info.

  3. Install Harbor by the following commands. It may take a while for the docker-compose process to finish.

    $ cd Deploy
    
    $ ./prepare
    Generated configuration file: ./config/ui/env
    Generated configuration file: ./config/ui/app.conf
    Generated configuration file: ./config/registry/config.yml
    Generated configuration file: ./config/db/env
    
    $ docker-compose up
    

If everything works fine, you can open a browser to visit the admin portal at http://reg.yourdomain.com . The default administrator username and password are admin/Harbor12345 .

Log in to the admin portal and create a new project, e.g. myproject. You can then use docker commands to login and push images. The default port of Harbor registry server is 80:

$ docker login reg.yourdomain.com
$ docker push reg.yourdomain.com/myproject/myrepo

NOTE:
To simplify the installation process, a pre-built installation package of Harbor is provided so that you don't need to clone the source code. By using this package, you can even install Harbor onto a host that is not connected to the Internet. For details on how to download and use this installation package, please refer to Installation and Configuration Guide .

For information on how to use Harbor, please see User Guide .

Deploy Harbor on Kubernetes

Detailed instruction about deploying Harbor on Kubernetes is described here.

Contribution

We welcome contributions from the community. If you wish to contribute code and you have not signed our contributor license agreement (CLA), our bot will update the issue when you open a pull request. For any questions about the CLA process, please refer to our FAQ.

License

Harbor is available under the Apache 2 license.

Partners

DataMan     SlamTec

Users

MaDaiLiCai

Supporting Technologies

beego Harbor is powered by Beego, an open source framework to build and develop applications in the Go way.