I want to create a Docker image after I SSH into the VM and download/config the project. Due to the nature of the project I cannot do this in the config file, it must be done by "freezing" the current system into an image.
Is this possible?
I want to create a Docker image after I SSH into the VM and download/config the project. Due to the nature of the project I cannot do this in the config file, it must be done by "freezing" the current system into an image.
Is this possible?
You can SSH into the Container, make changes and then you can commit the container, which will save your changes to an image. You can now push this image to registry.
Unless you are using a data container, all your changes are saved.