.是否可以在 JFrog 中使用 CUrl 命令创建本地存储库?
.Is it possible to have create local repositories using CUrl commands in JFrog?
我已经托管了 JFrog-OSS docker 容器,它位于 运行 后面的 Nginx 以及附加到它的 DNS。我想使用 REST Apis(curl 命令)创建新的存储库(本地的) .因为它是免费版本。是否可以在 JFrog 中使用 CUrl 命令创建本地存储库?
curl -s -uadmin:password -X PUT -H 'Content-Type: application/json' https://devops.com/artifactory/libs-release-local/path/to/directory/ -d '
[ {
"\key"\ : "\example-repo-local"\,
"\description"\ : "\artifactory repository"\,
"\type"\ : "\LOCAL"\,
"\url"\ : "\https://devops.com/artifactory/example-repo-local"\,
"\packageType"\ : "\Generic"\
}'
通过 REST 创建存储库 API 需要 Artifactory Pro。
此外,url 和 JSON 配置似乎有误。
发送请求的 url 不应包含路径,而应仅包含存储库。
"type" 键应该是 "rclass"。 "url" 密钥仅用于远程。
有关详细信息,请参阅 documentation。
我已经托管了 JFrog-OSS docker 容器,它位于 运行 后面的 Nginx 以及附加到它的 DNS。我想使用 REST Apis(curl 命令)创建新的存储库(本地的) .因为它是免费版本。是否可以在 JFrog 中使用 CUrl 命令创建本地存储库?
curl -s -uadmin:password -X PUT -H 'Content-Type: application/json' https://devops.com/artifactory/libs-release-local/path/to/directory/ -d '
[ {
"\key"\ : "\example-repo-local"\,
"\description"\ : "\artifactory repository"\,
"\type"\ : "\LOCAL"\,
"\url"\ : "\https://devops.com/artifactory/example-repo-local"\,
"\packageType"\ : "\Generic"\
}'
通过 REST 创建存储库 API 需要 Artifactory Pro。
此外,url 和 JSON 配置似乎有误。 发送请求的 url 不应包含路径,而应仅包含存储库。
"type" 键应该是 "rclass"。 "url" 密钥仅用于远程。
有关详细信息,请参阅 documentation。