Преглед изворни кода

:pencil: add lzmp uncompress

Jeremy Zheng пре 4 година
родитељ
комит
87e7cbabed
1 измењених фајлова са 10 додато и 2 уклоњено
  1. 10 2
      docker/README.md

+ 10 - 2
docker/README.md

@@ -8,8 +8,16 @@
   registries = ['quay.io', 'docker.io']
   ```
 
-- Clear outdated images: `podman rmi -a -f`
-- Import podman image: `podman load -q -i mint-TIMESTAMP.tar`.
+- Work with podman image
+
+  ```bash
+  # clear outdated images
+  podman rmi -a -f
+  # uncompress image files
+  cat palm.tar.xz.a* | tar xj
+  # import new podman image
+  podman load -q -i mint-TIMESTAMP.tar  
+  ```
 
 - Enjoy it!