-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Do not modify the qcow-image on runtime? #20
Comments
You can achieve what you need if you build a new container based on this one and add the image you want to run to the container. Take a look at the dockerfile in VSC directory of this project. The image is not included in the repo because it's proprietary software from Nokia, but you can see how easy is to do it. We use this method to launch our own services. Once you build a docker image with the VM image on it, you have the same VM each time you run it. Anyway, I will explore this as an optional flag, if qemu has that option. |
As optional flag would be fine. The method you explained is the same way it is done with RancherVM? |
Maybe create a image with image embedded is the best way (docker image, version, tags, ...), but it should be possible with qemu snapshots? |
I did my own version of KVM in docker what I do |
At the moment the changes written to the qcow image directly I think? Because delete and recreate the container keeps all the changes.
A option to keep the qcow (base) image unchanged would be great, but save the changes to be container restart save?
The text was updated successfully, but these errors were encountered: