Unable to find image for every pipeline run and step

Artur Stępień November 26, 2019

I'm using atlassian/ftp-deploy:0.2.2 to sync code with production server. The problem is that on every pipeline run and on every step Bitbucket is showing this:

Unable to find image 'bitbucketpipelines/ftp-deploy:0.2.2' locally0.2.2: Pulling from bitbucketpipelines/ftp-deploy

Is he unable to cache for some reason? Below is the bitbucket-pipelines.yml, I know it can be improved but is there any way to let Bitbucket cache the image locally so i will not waste time on download and extraction?

image: composer:latest
pipelines:
default:
- step:
name: Deploy project
caches:
- docker
script:
- echo "Deploying project to server..."
- rm .env
- rm -R .git
- pipe: atlassian/ftp-deploy:0.2.2
variables:
USER: $DEPLOY_USER
SERVER: $DEPLOY_SERVER
PASSWORD: $DEPLOY_PASSWORD
REMOTE_PATH: $DEPLOY_REMOTE_PATH
- step:
name: Notify system
deployment: Production
caches:
- docker
script:
- echo "Leaving update mark..."
- mkdir $DEPLOY_NOTIFY_DIR
- touch $DEPLOY_NOTIFY_DIR/.keep
- pipe: atlassian/ftp-deploy:0.2.2
variables:
USER: $DEPLOY_USER
SERVER: $DEPLOY_SERVER
PASSWORD: $DEPLOY_PASSWORD
LOCAL_PATH: $DEPLOY_NOTIFY_DIR
REMOTE_PATH: $DEPLOY_REMOTE_PATH/$DEPLOY_NOTIFY_DIR

 

1 answer

0 votes
Philip Hodder
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
January 6, 2020

Hello,

There is already caching occurring with pulled Docker images. We have a Docker registry proxying Dockerhub which speeds up download times of images. However, the Docker client will still need to pull images from that Docker registry.

Are you finding the download times to be excessively long?

Thanks,

Phil

Artur Stępień March 17, 2020

Cant say its extensively long. Its just something that bothers me.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events