This repository was archived by the owner on Mar 30, 2020. It is now read-only.

Description
As noted here:
https://cloud.google.com/container-registry/docs/#pushing_to_the_registry
If your project ID has the form example.com:foo-bar, with Docker 1.8+ use:
gcr.io/example.com/foo-bar/...
To support domain-scoped projects, we should sweep the examples and update lines like:
'imageName': 'gcr.io/%s/fastqc' % args.project,
to:
'imageName': 'gcr.io/%s/fastqc' % args.project.replace(':', '/'),