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' locally
0.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
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
Cant say its extensively long. Its just something that bothers me.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.