The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results forĀ 
Search instead forĀ 
Did you mean:Ā 

Accessing Prive Docker Repository for Service Image

Caleb Powell
October 22, 2019

I am trying to access a docker image for a service in a bitbucket build. The build fails with the following message:

rpc error: code = Unknown desc = failed to resolve image "docker.io/mydockerhubaccount/mycustomapp:latest-release": no available registry endpoint: pull access denied, repository does not exist or may require authorization: server message: insufficient_scope: authorization failed

The image resides in a private docker hub repository, and I have configured the 'custom-app' service as follows:

 

...
definitions
:
services:

postgres:
image: postgres:11.5
variables:
POSTGRES_DB: 'postgres'
POSTGRES_USER: 'somePassword'

custom-app:
image: mydockerhubaccount/mycustomapp:latest-release
username: $DOCKER_HUB_USER
password: $DOCKER_HUB_PASSWORD
variables:
...  

The username and password are valid and configured correctly as BitBucket Repository variables (we use the same variables in the same pipeline to push images to the same private docker hub repository). I have also confirmed that the image is available on the docker hub repo by pulling it independently on my development machine. 

Is there something missing in my configuration that would cause this error?

 

1 answer

1 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

Post a new question

1 vote
Answer accepted
Caleb Powell
October 22, 2019

Looks like the problem was a result of not including a 'name

 attribute. If you are using a private repo, you need to declare the image name like so:

 

custom-app:
image:
name: mydockerhubaccount/mycustomapp:latest-release
username: $DOCKER_HUB_USER
password: $DOCKER_HUB_PASSWORD
Le Chien
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
February 15, 2020

Thank you so much!

TAGS
AUG Leaders

Atlassian Community Events