dcba7ead268c6ae1b86144165c39772cfeb82199c18c59c54fb9469564322f46
$ docker exec -it demo bash
root@dcba7ead268c:/# echo "Hello World!" | tee /tmp/foo
Hello World!
root@dcba7ead268c:/# exit
exit
$ docker checkpoint create demo ckpt1
ckpt1
$ docker start --checkpoint ckpt1 demo
$ docker exec -it demo bash
root@dcba7ead268c:/# cat /tmp/foo
Hello World!
root@dcba7ead268c:/# exit
exit
--
You received this message because you are subscribed to the Google Groups "gVisor Users [Public]" group.
To unsubscribe from this group and stop receiving emails from it, send an email to gvisor-users...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/gvisor-users/a7db2950-750e-4417-9373-dca381b9658dn%40googlegroups.com.
I also opened an issue about it here: https://github.com/google/gvisor/issues/11810.
One thing I’m still unclear about: Docker supports checkpointing with `runsc` as a runtime, but doesn’t it also go through `containerd` and its `shim`? How does that work in Docker’s case?
Thanks!