Organizations
Organizations let teams share images under a common namespace.
Creating an org
Create an organization from your organizations page:
- Click New Organization
- Choose a slug (URL-safe name, e.g.
myteam) - Set a display name and description
Your images will be available at myteam/<repo>.
Roles
| Role | Pull | Push | Manage members | Manage tokens | Settings | Delete org |
|---|---|---|---|---|---|---|
| Owner | Yes | Yes | Yes | Yes | Yes | Yes |
| Admin | Yes | Yes | Yes | Yes | Yes | No |
| Member | Yes | No | No | No | No | No |
Org tokens
Org tokens are owned by the organization, not by individual users. They survive when members leave.
Create org tokens from the org settings page. An admin or owner can create tokens with scopes up to their own role’s permissions.
Pushing to an org
clipper push myapp:latest myorg/myapp:latest
Your personal token or org token must have image:push scope and you must be an admin or owner of the org.
Pulling from an org
clipper pull myorg/myapp:latest
Any member with a token that has image:pull scope can pull.