Skip to content

Commit 90be625

Browse files
feedback1
Signed-off-by: Craig <[email protected]>
1 parent 8bf9d99 commit 90be625

File tree

5 files changed

+55
-47
lines changed

5 files changed

+55
-47
lines changed

content/manuals/docker-hub/repos/_index.md

Lines changed: 36 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -16,36 +16,39 @@ particular application, microservice, or project. Content in repositories is
1616
organized by tags, which represent different versions of the same application,
1717
allowing users to pull the right version when needed.
1818

19-
## Key features and concepts
20-
21-
- [Repository information](./manage/information.md): Each repository can include a
22-
description, an overview, and categories to help users understand its purpose
23-
and usage. Adding clear repository information ensures that others can find
24-
your images and know how to use them.
25-
26-
- [Access management](./manage/access.md): Docker Hub repositories offer flexible
27-
access options. You can make repositories public or private and add
28-
collaborators. For organizations, teams, roles, and access tokens enable
29-
fine-grained access, providing security and control at scale.
30-
31-
- [Image management](./manage/hub-images/_index.md): Repositories support
32-
various types of content, including OCI artifacts, and provide robust version
33-
control with tagging. You can push new images and move existing content
34-
between repositories, ensuring flexibility in managing different versions and
35-
types of container images.
36-
37-
- [Webhooks](./manage/webhooks.md): Webhooks let you automate responses to repository
38-
events. For instance, you can set up notifications or trigger actions in
39-
external systems whenever an image is pushed or updated, helping to streamline
40-
workflows.
41-
42-
- [Automated builds](./manage/builds/_index.md): Docker Hub
43-
repositories integrate with GitHub or Bitbucket for automated builds, ensuring
44-
that every code change triggers an image rebuild. This feature supports
45-
continuous integration and delivery, keeping images up-to-date and
46-
streamlining development pipelines.
47-
48-
- [Image security insights](./manage/vulnerability-scanning.md): Docker Hub repositories
49-
provide powerful features and controls to help uncover, understand, and fix
50-
issues with container images. Options for image security insights include
51-
continuous Docker Scout image analysis and static vulnerability scanning.
19+
In this section, learn how to:
20+
21+
- [Create](./create.md) a repository.
22+
- Manage a repository, including how to manage:
23+
24+
- [Repository information](./manage/information.md): Add descriptions,
25+
overviews, and categories to help users understand the purpose and usage of
26+
your repository. Clear repository information aids discoverability and
27+
usability.
28+
29+
- [Access](./manage/access.md): Control who can access your repositories with
30+
flexible options. Make repositories public or private, add collaborators,
31+
and, for organizations, manage roles and teams to maintain security and
32+
control.
33+
34+
- [Images](./manage/hub-images/_index.md): Repositories support diverse
35+
content types, including OCI artifacts, and allow version control through
36+
tagging. Push new images and manage existing content across repositories
37+
for flexibility.
38+
39+
- [Image security insights](./manage/vulnerability-scanning.md): Utilize
40+
continuous Docker Scout analysis and static vulnerability scanning to
41+
detect, understand, and address security issues within container images.
42+
43+
- [Webhooks](./manage/webhooks.md): Automate responses to repository events
44+
like image pushes or updates by setting up webhooks, which can trigger
45+
notifications or actions in external systems, streamlining workflows.
46+
47+
- [Automated builds](./manage/builds/_index.md): Integrate with GitHub or
48+
Bitbucket for automated builds. Every code change triggers an image
49+
rebuild, supporting continuous integration and delivery.
50+
51+
- [Delete](./delete.md) a repository.
52+
- [Manage personal settings](./settings.md): For your account, you can set personal
53+
settings for repositories, including default repository privacy and autobuild
54+
notifications.

content/manuals/docker-hub/repos/manage/access.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,10 @@ roles, teams, or organization access tokens.
3131

3232
### Change repository visibility
3333

34-
When creating a repository in Docker Hub, you are given the option to set the
35-
repository visibility. In addition, you can set the default repository
36-
visibility when a repository is created in your personal repository settings.
37-
The following describes how to change the visibility after the repository has
38-
been created.
34+
When creating a repository in Docker Hub, you can set the repository visibility.
35+
In addition, you can set the default repository visibility when a repository is
36+
created in your personal repository settings. The following describes how to
37+
change the visibility after the repository has been created.
3938

4039
To change repository visibility:
4140

@@ -104,8 +103,8 @@ access.
104103

105104
### Configure team repository permissions
106105

107-
You must create a team before you are able to assign in permissions. For more
108-
details, see [Create and manage a
106+
You must create a team before you are able to configure repository permissions.
107+
For more details, see [Create and manage a
109108
team](/manuals/admin/organization/manage-a-team.md).
110109

111110
To configure team repository permissions:

content/manuals/docker-hub/repos/manage/hub-images/move.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,20 @@ organized under the correct accounts or namespaces.
1616

1717
When consolidating personal repositories, you can pull private images from the initial repository and push them into another repository owned by you. To avoid losing your private images, perform the following steps:
1818

19-
1. Navigate to [Docker Hub](https://hub.docker.com) create a new Docker account and select a personal subscription.
20-
2. Using `docker login` from the CLI, sign in using your original Docker account and pull your private images.
21-
3. Tag your private images with your newly created Docker username, for example:
19+
1. [Sign up](https://app.docker.com/signup) for a new Docker account with a personal subscription.
20+
2. Sign in to [Docker](https://app.docker.com/login) using your original Docker account
21+
3. Pull your images:
22+
23+
```console
24+
$ docker pull namespace1/docker101tutorial
25+
```
26+
27+
4. Tag your private images with your newly created Docker username, for example:
2228

2329
```console
2430
$ docker tag namespace1/docker101tutorial new_namespace/docker101tutorial
2531
```
26-
4. Using `docker login` from the CLI, sign in with your newly created Docker account, and push your newly tagged private images to your new Docker account namespace:
32+
5. Using `docker login` from the CLI, sign in with your newly created Docker account, and push your newly tagged private images to your new Docker account namespace:
2733

2834
```console
2935
$ docker push new_namespace/docker101tutorial

content/manuals/docker-hub/repos/manage/vulnerability-scanning.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ scanning or always up-to-date image analysis using Docker Scout.
1313

1414
## Docker Scout image analysis
1515

16-
When you have an image in your Docker Hub repository after turning on Docker
17-
Scout image analysis, Docker Scout automatically analyzes the image.
16+
After turning on Docker Scout image analysis, Docker Scout automatically
17+
analyzes images in your Docker Hub repository.
1818

1919
Image analysis extracts the Software Bill of Material (SBOM) and other image
2020
metadata, and evaluates it against vulnerability data from security advisories.

content/manuals/subscription/core-subscription/details.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Docker Pro includes:
4545
- Unlimited private repositories
4646
- 5000 image [pulls per day](../../docker-hub/download-rate-limit.md)
4747
- [Auto Builds](../../docker-hub/repos/manage/builds/_index.md) with 5 concurrent builds
48-
- 300 [Vulnerability Scans](../../docker-hub/repos//manage/vulnerability-scanning.md)
48+
- 300 [Vulnerability Scans](../../docker-hub/repos/manage/vulnerability-scanning.md)
4949

5050
For a list of features available in each tier, see [Docker Pricing](https://www.docker.com/pricing/).
5151

0 commit comments

Comments
 (0)