harbor/README.md

95 lines
6.1 KiB
Markdown
Raw Normal View History

2016-03-28 16:21:06 +02:00
# Harbor
[![Build Status](https://travis-ci.org/vmware/harbor.svg?branch=master)](https://travis-ci.org/vmware/harbor)
2016-08-20 16:50:21 +02:00
<img alt="Harbor" src="docs/img/harbor_logo.png">
2016-03-28 16:21:06 +02:00
Project Harbor is an enterprise-class registry server that stores and distributes Docker images. Harbor extends the open source Docker Distribution by adding the functionalities usually required by an enterprise, such as security, identity and management. As an enterprise private registry, Harbor offers better performance and security. Having a registry closer to the build and run environment improves the image transfer efficiency. Harbor supports the setup of multiple registries and has images replicated between them. With Harbor, the images are stored within the private registry, keeping the bits and intellectual properties behind the company firewall. In addition, Harbor offers advanced security features, such as user management, access control and activity auditing.
2016-03-28 16:21:06 +02:00
### Features
* **Role based access control**: Users and repositories are organized via 'projects' and a user can have different permission for images under a project.
* **Image replication**: Images can be replicated (synchronized) between multiple registry instances. Great for load balancing, high availability, hybrid and multi-cloud scenarios.
* **Graphical user portal**: User can easily browse, search repositories and manage projects.
2016-05-11 18:37:35 +02:00
* **AD/LDAP support**: Harbor integrates with existing enterprise AD/LDAP for user authentication and management.
* **Auditing**: All the operations to the repositories are tracked.
2016-06-06 06:07:30 +02:00
* **Internationalization**: Already localized for English, Chinese, German, Japanese and Russian. More languages can be added.
* **RESTful API**: RESTful APIs for most administrative operations, easy to integrate with external systems.
* **Easy deployment**: docker compose and offline installer.
2016-03-28 16:21:06 +02:00
### Install
2016-03-28 16:21:06 +02:00
**System requirements:**
Harbor only works with docker 1.10.0+ and docker-compose 1.6.0+.
#### Install via docker compose
On an Internet connected host, Harbor can be easily installed via docker-compose:
2016-03-28 16:21:06 +02:00
1. Get the source code:
```sh
$ git clone https://github.com/vmware/harbor
```
2016-04-08 11:26:53 +02:00
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](docs/installation_guide.md) for more info.
2016-03-28 16:21:06 +02:00
2016-05-17 11:32:10 +02:00
3. Install Harbor with the following commands. Note that the docker-compose process can take a while.
2016-03-28 16:21:06 +02:00
```sh
$ 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
2016-07-13 09:42:47 +02:00
$ docker-compose up -d
2016-03-28 16:21:06 +02:00
```
#### Install via offline installer
For those who do not want to clone the source, or need to install Harbor on a server not connected to the Internet, there is a pre-built installation package available. For details on how to download and use the installation package, please refer to [Installation and Configuration Guide](docs/installation_guide.md).
#### After installation
_If everything worked properly, you should be able to open a browser to visit the admin portal at http://reg.yourdomain.com. Note that the default administrator username/password are admin/Harbor12345._
2016-04-08 11:04:47 +02:00
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 (by default, the registry server listens on port 80):
2016-03-28 16:21:06 +02:00
```sh
2016-04-08 11:04:47 +02:00
$ docker login reg.yourdomain.com
2016-08-20 16:50:21 +02:00
$ docker push reg.yourdomain.com/myproject/myrepo:mytag
2016-03-28 16:21:06 +02:00
```
### Upgrade
If you are upgrading Harbor from an older version with existing data, you need to migrate the data to fit the new database schema. For more details, please refer to [Data Migration Guide](docs/migration_guide.md).
2016-03-28 16:21:06 +02:00
### Run
For information on how to use Harbor, please take a look at [User Guide](docs/user_guide.md).
2016-03-28 16:21:06 +02:00
2016-08-03 08:28:26 +02:00
### Community
2016-08-04 11:27:35 +02:00
Get connected with Project Harbor's community and sign up with VMware {code} [https://code.vmware.com/join/](https://code.vmware.com/join/) to get invited to VMware {code} Slack group, Channel: #harbor.
2016-08-03 08:28:26 +02:00
2016-03-28 16:21:06 +02:00
### 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](https://cla.vmware.com/faq).
2016-03-28 16:21:06 +02:00
### License
Harbor is available under the [Apache 2 license](LICENSE).
2016-03-29 03:39:37 +02:00
2016-08-29 06:01:07 +02:00
This project uses open source components which have additional licensing terms. The offcial docker images and licensing terms for these open source components can be found at the following locations:
* Photon OS 1.0: [docker image](https://hub.docker.com/_/photon/), [license](https://github.com/vmware/photon/blob/master/COPYING)
* Docker Registry 2.5: [docker image](https://hub.docker.com/_/registry/), [license](https://github.com/docker/distribution/blob/master/LICENSE)
* MySQL 5.6: [docker image](https://hub.docker.com/_/mysql/), [license](https://github.com/docker-library/mysql/blob/master/LICENSE)
* NGINX 1.9: [docker image](https://hub.docker.com/_/nginx/), [license](https://github.com/nginxinc/docker-nginx/blob/master/LICENSE)
2016-03-29 03:53:34 +02:00
### Partners
2016-03-31 05:37:08 +02:00
<a href="https://www.shurenyun.com/" border="0" target="_blank"><img alt="DataMan" src="docs/img/dataman.png"></a> &nbsp; &nbsp; <a href="http://www.slamtec.com" target="_blank" border="0"><img alt="SlamTec" src="docs/img/slamteclogo.png"></a>
2016-05-17 11:32:10 +02:00
&nbsp; &nbsp; <a href="https://www.caicloud.io" border="0"><img alt="CaiCloud" src="docs/img/caicloudLogoWeb.png"></a>
2016-03-29 03:53:34 +02:00
2016-03-29 03:39:37 +02:00
### Users
2016-06-06 06:07:30 +02:00
<a href="https://www.madailicai.com/" border="0" target="_blank"><img alt="MaDaiLiCai" src="docs/img/UserMaDai.jpg"></a> <a href="https://www.dianrong.com/" border="0" target="_blank"><img alt="Dianrong" src="docs/img/dianrong.png"></a>
2016-04-14 09:57:42 +02:00
### Supporting Technologies
2016-07-19 11:56:55 +02:00
<img alt="beego" src="docs/img/beegoLogo.png"> Harbor is powered by <a href="http://beego.me/">Beego</a>.
### About
Project Harbor is initiated by the Advanced Technology Center (ATC), VMware China R&D as a Cloud Application Accelerator (CAA) project.