I want to install a product on Docker. It was previously installed on an EC2-server of Amazon.
The installation starts with creating a mount point /product
. Than they partition a disk with fdisk
and they're creating a new partition. After that they create a filesystem and mount the new partition to /product
.
I'm not familiar with this but it seems to me that the main goal is to install the product on one new disk.
The installation was performed on an Ubuntu:14.04
So I just want to start like this:
docker run -i -t ubuntu:14.04 /bin/bash
Performing the same installation instructions and create an image of the container.
Is it necessary to perform something of the mount instructions or can I just start the installation?