Reuse container layer on docker-compose for GreenGrass deployment

0

We have a component that starts multiple container on our greengrass device using docker-compose. According to the documentation, the correct way to provide the private docker images from ECR is to supply them as artefact:

"URI": "docker:public.ecr.aws/cloudwatch-agent/cloudwatch-agent:latest"

One important aspect of our project is that we can reuse layers of our images. We have limited bandwidth on our devices and images can be big (i.e. PyTorch). If we have modification to do to our images, usually only the last small layer will be updated over the limited bandwidth network. I am worried when we are using images as artifacts, the whole image is going to be re-downloaded. Is that the case ?

I currently have a workaround of using the "install" lifecycle step to execute "docker-compose pull" and removing the artifacts, but that has the issue of being run on reboot, while I would rather only have it update the images when there is a new deployment.

1 Answer
1
Accepted Answer

Hello TSpark,

Docker pull will not redownload images which already exist. It will only download layers which have changed or do not exist. When using Greengrass to download images as artifacts, Greengrass simply calls docker pull, so all the same caching which Docker does applies equally to Greengrass.

AWS
EXPERT
answered 2 years ago
  • Awesome, that is great news. Thanks a lot !

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions