1

I'm the owner of a project, and have a co-worker who created all of the docker images for the project, which are available under the Container Registry within the Google Developer's Console. The images can be viewed in the Registry when he logs in, but I don't see anything.

What's stranger is that the co-worker is unable to see any images within the Google Cloud Storage Bucket, but I can see all of the Docker images.

What's supposed to be visible to both of us isn't lining-up between the Registry and the Cloud Bucket.

Has anyone come across this before?

  • What permissions are provided to your co-worker for your project ? For more infomation on project member permissions you can refer to this link (https://developers.google.com/console/help/new/#differentroles). Can you check the cloud storage ACLs (https://cloud.google.com/storage/docs/access-control?hl=en) to see if your co-worker has access to image bucket ? – Faizan Dec 22 '15 at 19:53
  • My co-worker has "Can edit" permissions for the project (I have "Is owner"). On the particular bucket, permissions on it state that Project (Entity) editors (Name) is an Owner (Access).

    I just checked, and now the co-worker is able to see the images in the cloud storage bucket. However, I still don't see any entries under the Container Registry (when I am logged in).

    – Dexter J. Dec 28 '15 at 20:15
  • @DexterJ. Is your user added to the ocker user group ? you can add it by running this command: sudo usermod -a -G docker ${USER}. Once done, log out and back in and try. – George Dec 30 '15 at 18:47
  • @DexterJ. I added the comment as answer if possible to mark it as the good answer so others can benefit from it – George Jan 11 '16 at 21:33

1 Answers1

0

Adding the user to the docker user group by running the following command:

sudo usermod -a -G docker ${USER}
George
  • 639