In this step, you will learn how to list configured Docker Scout integrations for a different organization that you are a member of. By default, Docker Scout commands operate on your current organization. However, you can specify a different organization using the --org
flag.
This is useful if you manage integrations for multiple organizations within Docker Hub and need to view or manage them without switching your primary organization.
To list integrations for a different organization, you will use the docker scout integration list
command with the --org
flag followed by the name of the organization.
Let's assume you are a member of another organization named another-org
. To list the integrations configured for another-org
, you would use the following command:
docker scout integration list --org another-org
Replace another-org
with the actual name of the organization you want to inspect.
This command will output a list of all configured Docker Scout integrations for the specified organization, similar to the output you saw in Step 1, but showing the integrations for another-org
.
NAME TYPE STATUS
another-int github configured
If the specified organization does not exist or you do not have permission to access it, the command will return an error.
This demonstrates how you can manage Docker Scout integrations across different organizations you are associated with using the --org
flag.