summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgueux2015-09-24 21:13:38 +0000
committeradmin2015-09-24 21:13:38 +0000
commitd779681395c7cab0336e3500560a490012bb2ff8 (patch)
tree784880bf245d521ec8b82a3bda4e23df3e2ff599
parentee1665047b9c03cf0991223218e6563337f6b799 (diff)
-rw-r--r--doc/forum/Systemd.container_produces_non-standard_systemd_container.mdwn31
1 files changed, 31 insertions, 0 deletions
diff --git a/doc/forum/Systemd.container_produces_non-standard_systemd_container.mdwn b/doc/forum/Systemd.container_produces_non-standard_systemd_container.mdwn
new file mode 100644
index 00000000..fb523a1c
--- /dev/null
+++ b/doc/forum/Systemd.container_produces_non-standard_systemd_container.mdwn
@@ -0,0 +1,31 @@
+I just tried Systemd.container. The process seemed to work well, and I can log to the container with
+
+ $ machinectl --shell root@mycontainer
+
+but machinectl can't clone the image
+
+ $ machinectl clone mycontainer testclone
+ Could not clone image: Operation not supported
+
+I can export and import the image:
+
+ $ machinectl export-tar mycontainer /var/tmp/testclone.tar.gz
+ $ machinectl import-tar /var/tmp/testclone.tar.gz test-container
+
+list-images gives does not give the same information for both images:
+
+ $ machinectl list-images
+ NAME TYPE RO USAGE CREATED MODIFIED
+ mycontainer directory no n/a n/a n/a
+ testclone subvolume no 60M Thu 2015-09-24 22:41:39 CEST n/a
+
+but I can clone my newly imported image:
+
+ $ machinectl clone testclone testclone2
+ $ machinectl list-images
+ NAME TYPE RO USAGE CREATED MODIFIED
+ mycontainer directory no n/a n/a n/a
+ testclone subvolume no 60M Thu 2015-09-24 22:41:39 CEST n/a
+ testclone2 subvolume no 60M Thu 2015-09-24 22:48:39 CEST n/a
+
+I guess "machinectl clone" does a little more than just copying the images...