Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

pipeline - dockerfile extends image FROM private repo

gentunian November 15, 2017

Hi,

 

My dockerfile extends an image hosted in a private repo in hub.docker.com:

 

FROM myprivaterepo/image:latest

When building, pipeline fails with:

+ docker build -t $IMAGE_NAME .
Sending build context to Docker daemon 37.27MBStep 1/11 : FROM myprivaterepo/image:latest
repository myprivaterepo/image not found: does not exist or no pull access

 

How could I extend my image with private images?

 

 

1 answer

1 accepted

2 votes
Answer accepted
gentunian November 15, 2017

Duh... turns out I had `docker login` missplaced.

 

For anyone interested in the topic:

 

options:
docker: true

pipelines:
default:
- step:
script:
# Set $DOCKER_HUB_USERNAME and $DOCKER_HUB_PASSWORD as environment variables in repository settings
- export IMAGE_NAME=myprivaterepo/image:latest
- docker login --username $DOCKER_HUB_USERNAME --password $DOCKER_HUB_PASSWORD
- docker build -t $IMAGE_NAME .
- docker push $IMAGE_NAME

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events