Skip to content

Commit 3cdfd21

Browse files
authored
Fix checkpoint filename
On podman 5.2.5, the checkpoint archive is a zstd compressed tar file.
1 parent 2ded5a3 commit 3cdfd21

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/checkpoint.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,14 +56,14 @@ transferring the checkpoint, it is possible to specify an output-file.
5656
On the source system:
5757

5858
```console
59-
$ sudo podman container checkpoint <container_id> -e /tmp/checkpoint.tar.gz
60-
$ scp /tmp/checkpoint.tar.gz <destination_system>:/tmp
59+
$ sudo podman container checkpoint <container_id> -e /tmp/checkpoint.tar.zstd
60+
$ scp /tmp/checkpoint.tar.zstd <destination_system>:/tmp
6161
```
6262

6363
On the destination system:
6464

6565
```console
66-
$ sudo podman container restore -i /tmp/checkpoint.tar.gz
66+
$ sudo podman container restore -i /tmp/checkpoint.tar.zstd
6767
```
6868

6969
After being restored, the container will answer requests again as it did before

0 commit comments

Comments
 (0)