89luca89 / distrobox

Use any linux distribution inside your terminal. Enable both backward and forward compatibility with software and freedom to use whatever distribution you’re more comfortable with. Mirror available at: https://gitlab.com/89luca89/distrobox
https://distrobox.it/
GNU General Public License v3.0
10.07k stars 416 forks source link

[Suggestion] Add the subcommands distrobox snapshot & distrobox restore #1339

Open dcermak opened 7 months ago

dcermak commented 7 months ago

Is your feature request related to a problem? Please describe.

Distrobox is a nice piece of software to not mess up my host os when playing around in a container, but it currently provides no convenient way to save me from messing up the container itself. It would be great if distrobox would allow me to create a snapshot of a container and restore it, if whatever I did ended badly. At the moment I'd have to perform the snapshoting myself and handle the removal of old snapshots myself as well.

Describe the solution you'd like

distrobox snapshot would be a new command that with the following syntax/options:

Describe alternatives you've considered

using podman container commit -p $ctr $name manually and re-starting distrobox as described in the docs.

Additional context

A possible implementation could just store the containers in the container runtime's storage. Snapshots could be created using the id of the container, e.g. via: podman container commit -p $ctr distrobox-snapshot-$(podman inspect -f {{.Id}} $ctr):$(date +%s)

which would create unique time snapshots (unless the user decides to create snapshots more frequently than once per second…).

msirringhaus commented 7 months ago

Here is a proof of concept stand-alone script that does most of the things: https://github.com/msirringhaus/distro-snapper