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
?