79417091

Date: 2025-02-06 07:40:25
Score: 1
Natty:
Report link

In my case, when I reviewed the .gitlab-ci.yml, i found that there was a typo in image i was pushing to registry after build. That caused mismatch and image got pushed to registry with the wrong tag. So, always double-check are you pushing what you built? e.g. after correction,

docker build -t $IMAGE_NAME:$VERSION .

followed by

docker push $IMAGE_NAME:$VERSION
Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Irshad Nizami