Harbor can be installed by one of two approaches:
Online installer: The installer downloads Harbor's images from Docker hub. For this reason, the installer is very small in size.
Offline installer: Use this installer when the host does not have an Internet connection. The installer contains pre-built images so its size is larger.
All installers can be downloaded from the official release page.
This guide describes the steps to install and configure Harbor by using the online or offline installer. The installation processes are almost the same.
If you run a previous version of Harbor, you may need to update harbor.yml
and migrate the data to fit the new database schema. For more details, please refer to Harbor Migration Guide.
In addition, the deployment instructions on Kubernetes has been created by the community. Refer to Harbor on Kubernetes for details.
Harbor is deployed as several Docker containers, and, therefore, can be deployed on any Linux distribution that supports Docker. The target host requires Docker, and Docker Compose to be installed.
Resource | Capacity | Description |
---|---|---|
CPU | minimal 2 CPU | 4 CPU is preferred |
Mem | minimal 4GB | 8GB is preferred |
Disk | minimal 40GB | 160GB is preferred |
Software | Version | Description |
---|---|---|
Docker engine | version 17.06.0-ce+ or higher | For installation instructions, please refer to: docker engine doc |
Docker Compose | version 1.18.0 or higher | For installation instructions, please refer to: docker compose doc |
Openssl | latest is preferred | Generate certificate and keys for Harbor |
Port | Protocol | Description |
---|---|---|
443 | HTTPS | Harbor portal and core API will accept requests on this port for https protocol, this port can change in config file |
4443 | HTTPS | Connections to the Docker Content Trust service for Harbor, only needed when Notary is enabled, This port can change in config file |
80 | HTTP | Harbor portal and core API will accept requests on this port for http protocol |
The installation steps boil down to the following
Downloading the installer:
The binary of the installer can be downloaded from the release page. Choose either online or offline installer. Use tarcommand to extract the package.
Online installer:
$ tar xvf harbor-online-installer-.tgz
Offline installer:
$ tar xvf harbor-offline-installer-.tgz
Configuring Harbor
Configuration parameters are located in the file harbor.yml.
There are two categories of parameters, required parameters and optional parameters.
System level parameters: These parameters are required to be set in the configuration file. They will take effect if a user updates them in harbor.yml
and run the install.sh
script to reinstall Harbor.
User level parameters: These parameters can update after the first time harbor started on Web Portal. In particular, you must set the desired auth_mode before registering or creating any new users in Harbor. When there are users in the system (besides the default admin user), auth_mode cannot be changed.
The parameters are described below - note that at the very least, you will need to change the hostname attribute.
Required parameters
hostname: The target host's hostname, which is used to access the Portal and the registry service. It should be the IP address or the fully qualified domain name (FQDN) of your target machine, e.g., 192.168.1.10
or reg.yourdomain.com
. Do NOT use localhost
or 127.0.0.1
for the hostname - the registry service needs to be accessible by external clients!
data_volume: The location to store harbor's data.
harbor_admin_password: The administrator's initial password. This password only takes effect for the first time Harbor launches. After that, this setting is ignored and the administrator's password should be set in the Portal. Note that the default username/password are admin/Harbor12345 .
database: the configs related to local database
jobservice: jobservice related service
log: log related url
optional parameters
http:
https: The protocol used to access the Portal and the token/notification service. If Notary is enabled, has to set to https. refer to Configuring Harbor with HTTPS Access.
external_url: Enable it if use external proxy, and when it enabled the hostname will no longer used
clair: Clair related configs
http://my.proxy.com:3128
.http://my.proxy.com:3128
.127.0.0.1,localhost,core,registry
.chart: chart related configs
external_database: external database configs, Currently only support POSTGRES.
external_redis: configs for use the external redis
Configuring storage backend (optional)
For example, if you use Openstack Swift as your storage backend, the parameters may look like this:
storage_service: ca_bundle: swift: username: admin password: ADMIN_PASS authurl: http://keystone_addr:35357/v3/auth tenant: admin domain: default region: regionOne container: docker_images" redirect: disable: false
NOTE: For detailed information on storage backend of a registry, refer to Registry Configuration Reference .
Finishing installation and starting Harbor
Once harbor.yml and storage backend (optional) are configured, install and start Harbor using the install.sh
script. Note that it may take some time for the online installer to download Harbor images from Docker hub.
Default installation (without Notary/Clair)
Harbor has integrated with Notary and Clair (for vulnerability scanning). However, the default installation does not include Notary or Clair service.
$ sudo ./install.sh
If everything worked properly, you should be able to open a browser to visit the admin portal at http://reg.yourdomain.com
(change reg.yourdomain.com
to the hostname configured in your harbor.yml
). Note that the default administrator username/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 (By default, the registry server listens on port 80):
$ docker login reg.yourdomain.com $ docker push reg.yourdomain.com/myproject/myrepo:mytag
IMPORTANT: The default installation of Harbor uses HTTP - as such, you will need to add the option --insecure-registry
to your client's Docker daemon and restart the Docker service.
Installation with Notary
To install Harbor with Notary service, add a parameter when you run install.sh
:
$ sudo ./install.sh --with-notary
Note: For installation with Notary the parameter ui_url_protocol must be set to "https". For configuring HTTPS please refer to the following sections.
More information about Notary and Docker Content Trust, please refer to Docker's documentation.
Installation with Clair
To install Harbor with Clair service, add a parameter when you run install.sh
:
$ sudo ./install.sh --with-clair
For more information about Clair, please refer to Clair's documentation: https://coreos.com/clair/docs/2.0.1/
Installation with chart repository service
To install Harbor with chart repository service, add a parameter when you run install.sh
:
$ sudo ./install.sh --with-chartmuseum
Note: If you want to install Notary, Clair and chart repository service, you must specify all the parameters in the same command:
$ sudo ./install.sh --with-notary --with-clair --with-chartmuseum
For information on how to use Harbor, please refer to User Guide of Harbor .
Configuring Harbor with HTTPS access
Harbor does not ship with any certificates, and, by default, uses HTTP to serve requests. While this makes it relatively simple to set up and run - especially for a development or testing environment - it is not recommended for a production environment. To enable HTTPS, please refer to Configuring Harbor with HTTPS Access.
You can use docker-compose to manage the lifecycle of Harbor. Some useful commands are listed as follows (must run in the same directory as docker-compose.yml).
Stopping Harbor:
$ sudo docker-compose stop Stopping nginx ... done Stopping harbor-portal ... done Stopping harbor-jobservice ... done Stopping harbor-core ... done Stopping registry ... done Stopping redis ... done Stopping registryctl ... done Stopping harbor-db ... done Stopping harbor-log ... done
Restarting Harbor after stopping:
$ sudo docker-compose start Starting log ... done Starting registry ... done Starting registryctl ... done Starting postgresql ... done Starting core ... done Starting portal ... done Starting redis ... done Starting jobservice ... done Starting proxy ... done
To change Harbor's configuration, first stop existing Harbor instance and update harbor.yml
. Then run prepare
script to populate the configuration. Finally re-create and start Harbor's instance:
$ sudo docker-compose down -v $ vim harbor.yml $ sudo prepare $ sudo docker-compose up -d
Removing Harbor's containers while keeping the image data and Harbor's database files on the file system:
$ sudo docker-compose down -v
Removing Harbor's database and image data (for a clean re-installation):
$ rm -r /data/database $ rm -r /data/registry
Managing lifecycle of Harbor when it's installed with Notary, Clair and chart repository service
If you want to install Notary, Clair and chart repository service together, you should include all the components in the prepare commands:
$ sudo docker-compose down -v $ vim harbor.yml $ sudo prepare --with-notary --with-clair --with-chartmuseum $ sudo docker-compose up -d
Please check the Docker Compose command-line reference for more on docker-compose.
By default, registry data is persisted in the host's /data/
directory. This data remains unchanged even when Harbor's containers are removed and/or recreated, you can edit the data_volume
in harbor.yml
file to change this directory.
In addition, Harbor uses rsyslog to collect the logs of each container. By default, these log files are stored in the directory /var/log/harbor/
on the target host for troubleshooting, also you can change the log directory in harbor.yml
.
By default, Harbor listens on port 80(HTTP) and 443(HTTPS, if configured) for both admin portal and docker commands, these default ports can configured in harbor.yml
Currently, only PostgreSQL database is supported by Harbor. To user an external database, just uncomment the external_database
section in harbor.yml
and fill the necessary information. Four databases are needed to be create first by users for Harbor core, Clair, Notary server and Notary signer. And the tables will be generated automatically when Harbor starting up.
After release 1.8.0, User settings are separated with system settings, and all user settings should be configured in web console or by HTTP request. Please refer Configure User Settings to config user settings.
By default, Harbor limits the CPU usage of Clair container to 150000 and avoids its using up all the CPU resources. This is defined in the docker-compose.clair.yml file. You can modify it based on your hardware configuration.
$ sudo docker-compose ps
Name Command State Ports
-----------------------------------------------------------------------------------------------------------------------------
harbor-core /harbor/start.sh Up
harbor-db /entrypoint.sh postgres Up 5432/tcp
harbor-jobservice /harbor/start.sh Up
harbor-log /bin/sh -c /usr/local/bin/ ... Up 127.0.0.1:1514->10514/tcp
harbor-portal nginx -g daemon off; Up 80/tcp
nginx nginx -g daemon off; Up 0.0.0.0:443->443/tcp, 0.0.0.0:4443->4443/tcp, 0.0.0.0:80->80/tcp
redis docker-entrypoint.sh redis ... Up 6379/tcp
registry /entrypoint.sh /etc/regist ... Up 5000/tcp
registryctl /harbor/start.sh Up
If a container is not in UP state, check the log file of that container in directory /var/log/harbor
. For example, if the container harbor-core
is not running, you should look at the log file core.log
.
2.When setting up Harbor behind an nginx proxy or elastic load balancing, look for the line below, in common/config/nginx/nginx.conf
and remove it from the sections if the proxy already has similar settings: location /
, location /v2/
and location /service/
.
proxy_set_header X-Forwarded-Proto $scheme;
and re-deploy Harbor refer to the previous section "Managing Harbor's lifecycle".