在Docker构建期间,Grunt需要github令牌

时间:2015-05-29 17:13:35

标签: github gruntjs docker github-api volojs

Grunt在为图像构建docker期间执行时需要github身份验证令牌。如何为grunt提供所需的令牌?交互式传递不起作用(因为我已经完成了)。

grunt的消息是:

Running "volo:add:-nostamp:twbs/bootstrap/3.3.2:packages/bootstrap/" (volo) task
GitHub auth required for api.github.com/repos/twbs/bootstrap/tags: {"message":"API rate limit exceeded for XXX.XXX.XXX.XXX. (But here's the good news: Authenticated requests get a higher rate limit. Check out the documentation for more details.)","documentation_url":"https://developer.github.com/v3/#rate-limiting"}
GitHub access token required to complete action. In a web browser, go to:

https://github.com/settings/tokens

and generate a new "Personal access token" for volo. Only "repo" and "public_repo" permissions are needed. Paste the generated token below.
GitHub Personal Access Token: 

1 个答案:

答案 0 :(得分:0)

您可以将存储库的URL更改为:

https://<token>:x-oauth-basic@github.com/MyApp/myapp.git

更多信息:https://devops.profitbricks.com/tutorials/configure-a-docker-container-to-automatically-pull-from-github-using-oauth/