Skip to content

Commit

Permalink
fix(deploy.py): remove insecure-registry requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Fisher committed Jul 29, 2016
1 parent 173e25c commit 614feb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rootfs/deploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,5 +69,5 @@ def download_file(tar_path):
stream = client.build(tag=repo, stream=True, decode=True, rm=True, path='/app')
log_output(stream, True)
print("Pushing to registry")
stream = client.push(registry+'/'+imageName, tag=imageTag, stream=True, insecure_registry=True)
stream = client.push(registry+'/'+imageName, tag=imageTag, stream=True)
log_output(stream, False)

0 comments on commit 614feb7

Please sign in to comment.