I'm unable to get this to work, I receive an Error but no reason why this fails...
Does anyone know how I can push the built image to my own registry?
(I'm still learning this stuff)
script:
- echo "Build Dev ${BITBUCKET_BRANCH}"
- IMAGE_TAG=$(eval echo "${BITBUCKET_BRANCH}" | tr '[:upper:]' '[:lower:]' | tr '/' '-')
- docker build -t localhost:5000/contest:$IMAGE_TAG.
- docker push localhost:5000/contest:$IMAGE_TAG
Edit: Also, everything works if I send the Image to my Amazon ECR...
Manually sending the image to my registry at localhost:5000 also works.
Edit2: Replaced localhost for host.docker.internal and still had error.
Using :
curl host.docker.internal:5000/v2/_catalog
on the runner container also works...
Edit3: The only error message I'm getting:
Result{status=FAILED, error=None}