Skip to content

Commit e397e86

Browse files
YangJiao0817Yang Jiao
and
Yang Jiao
authored
Fix docker version to 20.10.10 (goharbor#19751)
Signed-off-by: Yang Jiao <yang.jiao@broadcom.com> Co-authored-by: Yang Jiao <yang.jiao@broadcom.com>
1 parent 923295c commit e397e86

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ Harbor is hosted by the [Cloud Native Computing Foundation](https://cncf.io) (CN
3333
* **Role based access control**: Users access different repositories through 'projects' and a user can have different permission for images or Helm charts under a project.
3434
* **Policy based replication**: Images and charts can be replicated (synchronized) between multiple registry instances based on policies with using filters (repository, tag and label). Harbor automatically retries a replication if it encounters any errors. This can be used to assist loadbalancing, achieve high availability, and facilitate multi-datacenter deployments in hybrid and multi-cloud scenarios.
3535
* **Vulnerability Scanning**: Harbor scans images regularly for vulnerabilities and has policy checks to prevent vulnerable images from being deployed.
36-
* **LDAP/AD support**: Harbor integrates with existing enterprise LDAP/AD for user authentication and management, and supports importing LDAP groups into Harbor that can then be given permissions to specific projects.
37-
* **OIDC support**: Harbor leverages OpenID Connect (OIDC) to verify the identity of users authenticated by an external authorization server or identity provider. Single sign-on can be enabled to log into the Harbor portal.
36+
* **LDAP/AD support**: Harbor integrates with existing enterprise LDAP/AD for user authentication and management, and supports importing LDAP groups into Harbor that can then be given permissions to specific projects.
37+
* **OIDC support**: Harbor leverages OpenID Connect (OIDC) to verify the identity of users authenticated by an external authorization server or identity provider. Single sign-on can be enabled to log into the Harbor portal.
3838
* **Image deletion & garbage collection**: System admin can run garbage collection jobs so that images(dangling manifests and unreferenced blobs) can be deleted and their space can be freed up periodically.
3939
* **Notary**: Support signing container images using Docker Content Trust (leveraging Notary) for guaranteeing authenticity and provenance. In addition, policies that prevent unsigned images from being deployed can also be activated.
4040
* **Graphical user portal**: User can easily browse, search repositories and manage projects.
@@ -55,7 +55,7 @@ For learning the architecture design of Harbor, check the document [Architecture
5555

5656
**System requirements:**
5757

58-
**On a Linux host:** docker 17.06.0-ce+ and docker-compose 1.18.0+ .
58+
**On a Linux host:** docker 20.10.10-ce+ and docker-compose 1.18.0+ .
5959

6060
Download binaries of **[Harbor release ](https://github.com/vmware/harbor/releases)** and follow **[Installation & Configuration Guide](https://goharbor.io/docs/latest/install-config/)** to install Harbor.
6161

@@ -77,8 +77,8 @@ The [compatibility list](https://goharbor.io/docs/edge/install-config/harbor-com
7777

7878
## Community
7979

80-
* **Twitter:** [@project_harbor](https://twitter.com/project_harbor)
81-
* **User Group:** Join Harbor user email group: [harbor-users@lists.cncf.io](https://lists.cncf.io/g/harbor-users) to get update of Harbor's news, features, releases, or to provide suggestion and feedback.
80+
* **Twitter:** [@project_harbor](https://twitter.com/project_harbor)
81+
* **User Group:** Join Harbor user email group: [harbor-users@lists.cncf.io](https://lists.cncf.io/g/harbor-users) to get update of Harbor's news, features, releases, or to provide suggestion and feedback.
8282
* **Developer Group:** Join Harbor developer group: [harbor-dev@lists.cncf.io](https://lists.cncf.io/g/harbor-dev) for discussion on Harbor development and contribution.
8383
* **Slack:** Join Harbor's community for discussion and ask questions: [Cloud Native Computing Foundation](https://slack.cncf.io/), channel: [#harbor](https://cloud-native.slack.com/messages/harbor/) and [#harbor-dev](https://cloud-native.slack.com/messages/harbor-dev/)
8484

make/common.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
#docker version: 17.06.0+
2+
#docker version: 20.10.10+
33
#docker-compose version: 1.18.0+
44
#golang version: 1.12.0+
55

@@ -78,7 +78,7 @@ function check_golang {
7878
function check_docker {
7979
if ! docker --version &> /dev/null
8080
then
81-
error "Need to install docker(17.06.0+) first and run this script again."
81+
error "Need to install docker(20.10.10+) first and run this script again."
8282
exit 1
8383
fi
8484

@@ -93,7 +93,7 @@ function check_docker {
9393
# the version of docker does not meet the requirement
9494
if [ "$docker_version_part1" -lt 17 ] || ([ "$docker_version_part1" -eq 17 ] && [ "$docker_version_part2" -lt 6 ])
9595
then
96-
error "Need to upgrade docker package to 17.06.0+."
96+
error "Need to upgrade docker package to 20.10.10+."
9797
exit 1
9898
fi
9999
else

0 commit comments

Comments
 (0)