I’m relatively new to docker so forgive me if this is just a dumb user error.
I’m trying to upload a modified docker image to gitlab and I’m getting an error:
“denied: requested access to the resource is denied”
The steps I’m going through:
- docker pull
- modify the image
- commit the image
docker login -u username -p token registry.gitlab.com
- tag the image
docker tag a179773563c9 registry.gitlab.com/abcgroup/abcproject/php-7.1.0
- attempt to push
docker push registry.gitlab.com/abcgroup/abcproject/php-7.1.0
That’s when I get the error message…
"denied: requested access to the resource is denied"
So am I missing a step or 20? am I doing something incorrect or out of order?
I have no Dockerfile - I’m just pulling a pre-built image, modifying, and committing it…