Use our patched version of docker-py with build credentials patched in. Fix the hostname in the build credentials block to be variable.
This commit is contained in:
parent
d67a1cddc2
commit
126363dce9
2 changed files with 2 additions and 2 deletions
|
@ -1471,7 +1471,7 @@ def get_pull_credentials(trigger):
|
||||||
return {
|
return {
|
||||||
'username': trigger.pull_user.username,
|
'username': trigger.pull_user.username,
|
||||||
'password': login_info.service_ident,
|
'password': login_info.service_ident,
|
||||||
'registry': 'quay.io' # TODO: Is there a better way to do this?
|
'registry': app.config['URL_HOST'],
|
||||||
}
|
}
|
||||||
|
|
||||||
def create_webhook(repo, params_obj):
|
def create_webhook(repo, params_obj):
|
||||||
|
|
|
@ -21,7 +21,7 @@ xhtml2pdf
|
||||||
logstash_formatter
|
logstash_formatter
|
||||||
redis
|
redis
|
||||||
hiredis
|
hiredis
|
||||||
docker-py
|
git+https://github.com/DevTable/docker-py.git
|
||||||
loremipsum
|
loremipsum
|
||||||
pygithub
|
pygithub
|
||||||
flask-restful
|
flask-restful
|
||||||
|
|
Reference in a new issue