Skip to content
This repository was archived by the owner on Jun 29, 2021. It is now read-only.

Commit 614feb7

Browse files
author
Matthew Fisher
committed
fix(deploy.py): remove insecure-registry requirement
1 parent 173e25c commit 614feb7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

rootfs/deploy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,5 +69,5 @@ def download_file(tar_path):
6969
stream = client.build(tag=repo, stream=True, decode=True, rm=True, path='/app')
7070
log_output(stream, True)
7171
print("Pushing to registry")
72-
stream = client.push(registry+'/'+imageName, tag=imageTag, stream=True, insecure_registry=True)
72+
stream = client.push(registry+'/'+imageName, tag=imageTag, stream=True)
7373
log_output(stream, False)

0 commit comments

Comments
 (0)