We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
docker push
1 parent 98387cf commit bc422efCopy full SHA for bc422ef
1 file changed
builder/templates/builder
@@ -95,8 +95,8 @@ if __name__ == '__main__':
95
# push the image, output to /dev/null
96
print('-----> Pushing image to private registry')
97
sys.stdout.flush(), sys.stderr.flush()
98
- p = subprocess.Popen('docker push {target_image}'.format(**locals()), shell=True,
99
- stdout=open(os.devnull, 'w'), stderr=open(os.devnull, 'w'))
+ p = subprocess.Popen('docker push {target_image}'.format(**locals()), shell=True)
+ # stdout=open(os.devnull, 'w'), stderr=open(os.devnull, 'w'))
100
rc = p.wait()
101
if rc != 0:
102
raise Exception('Could not push Docker image')
0 commit comments