Docker reusable components

Hi All,

I am leveraging microservices architecture where i need to upload 1 million images/videos in AWS S3 and process it based on the requirement like image search/validation etc. I think docker would serve the purpose. Pls suggest if anything better can be done ?

Using docker, how can i build reusable components like
service_1 connection to amazon S3
service_2 upload mp4 file
service_3 image dataset(zip file)
service_4 image compare

If docker VOLUME can be used here, how can i dynamically invoke the services at run time.

Thanks
vijay

you do not need the exchange over Volumes. You also could just exchange over the standard unix pipes.

docker run image_modifications | docker run image_compare

If done like this, the invocation is solved?