I have a amazon web server that runs on ubuntu 16.04. This server is dedicated to running a simulation that consists of multiple processes. I have been given the task to create docker containers so that multiple instances of the simulation can be run on the server simultaneously. I understand that running multiple containers will require changing some port id’s for each container so my first task it to just run one instance of the simulation in a container. It seems that I could pull in all of the necessary software images in the dockerFile to create my image file. But I was wondering if there is an easier way to create an image file that is basically a clone of all the software currently on my server?
Thank you