-
I have a container running in runc, and I am able to checkpoint it: Any advice on where to start troubleshooting this? I know that my kernel supports CRIU. It seems odd that the dump/checkpoint succeeds but the restore complains about missing a config in the checkpoint. Version:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
When you create a container, runc takes its configuration from OCI spec, which is in a file named When you restore a container, you are essentially re-creating it, so Hope that makes sense. |
Beta Was this translation helpful? Give feedback.
When you create a container, runc takes its configuration from OCI spec, which is in a file named
config.json
residing in either the current directory or the directory specified via the--bundle
option.When you restore a container, you are essentially re-creating it, so
config.json
(same as used to create this container) is required.Hope that makes sense.