I used docker-compose to create an app that is composed by three images. I would like to understand now how can I export this app with the all services included.
Just for clarification the containers and images are the following:
container ls -a
CONTAINER ID IMAGE
82522c850e9c docker-app_client
7c796b6629bb docker-app_server
66c84b58da2b mongo
docker images
docker-mice-tracking-app_server
docker-mice-tracking-app_client
mongo
I can start my application from the folder in which i build the docker images by typing docker-compose up
.
How can I export this images and replicate the same behavior on a different machine?
Thank you.