4.3. 使用 API 创建存储库
使用以下步骤使用 Red Hat Quay API 创建镜像存储库。
先决条件
- 您已创建了 OAuth 访问令牌。
-
您已在
config.yaml
文件中设置了BROWSER_API_CALLS_XHR_ONLY: false
。
流程
输入以下命令使用
POST /api/v1/repository
端点创建存储库:$ curl -X POST \ -H "Authorization: Bearer <bearer_token>" \ -H "Content-Type: application/json" \ -d '{ "repository": "<new_repository_name>", "visibility": "<private>", "description": "<This is a description of the new repository>." }' \ "https://quay-server.example.com/api/v1/repository"
输出示例
{"namespace": "quayadmin", "name": "<new_repository_name>", "kind": "image"}