I have a Gitlab Repository that hosts a web app made with React / NodeJS, So, I have the client and server in the same repo.
App is working, and I want to use Gitlab Registry my Docker images (client and server).
Thing is my repository has the name: gitlab.com/group/project
And it is expecting a Docker image with the same name.
Instead, I have two Docker images:
- registry.gitlab.com/group/project_api
- registry.gitlab.com/group/project_client
So, it won't let me push my images. I get:
denied: requested access to the resource is denied
How can I do it ? I don't want to make two repositories.

gitlab.com/group/project:api(and:clientfor the client, obviously). - halfer:-p- halferdocker pushcommand you are using? As per my advice above, you need to push a registry that exists, and that needs to be the built name of the image. - halfer