I'm trying to create a domain scoped project so that my gcr.io registries look like gcr.io/acme.com/project/image
rather than gcr.io/project/image
like documented in https://cloud.google.com/container-registry/docs/pushing-and-pulling#registry_name_format, but I'm unable to create a project with id acme.com:project
. Am I missing something?
Asked
Active
Viewed 472 times
0

Calin Don
- 865
- 2
- 11
- 19
1 Answers
2
You can replace the colon with a slash. So your gcr.io address should be gcr.io/acme.com/project/image.
Note: domain scoped projects are deprecated and you haven't been able to make new domain scoped projects for years.

Stephen Weinberg
- 51,320
- 14
- 134
- 113
-
Docs: https://cloud.google.com/container-registry/docs/troubleshooting#domain-scoped_projects – Kiana Jul 09 '19 at 22:04