'use image-file in docker-compose file

I have to deliver an application running in several containers to a customer.
I can export all single images to files with:

docker save --output app1.tar app2
docker save --output app2.tar app2
...

My goal is do deliver a ZIP-folder with only the docker-compose.yml and the images (app1.tar,app2.tar...) needed to run the containers.

Is there any way to reference an image-file in the docker-compose.yml?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source