Compare commits
4 commits
90f6a0aefb
...
6596b8c17f
Author | SHA1 | Date | |
---|---|---|---|
6596b8c17f | |||
1065b1fade | |||
3721f35d96 | |||
ae3aaba948 |
2 changed files with 62 additions and 0 deletions
|
@ -38,6 +38,7 @@ RTFD
|
|||
public/grub/index
|
||||
public/ifupdown2/index
|
||||
public/imagemagick/index
|
||||
public/incus/index
|
||||
public/isc-dhcp-server/index
|
||||
public/kubernetes/index
|
||||
public/letsencrypt/index
|
||||
|
|
61
help/public/incus/index.rst
Normal file
61
help/public/incus/index.rst
Normal file
|
@ -0,0 +1,61 @@
|
|||
incus
|
||||
=====
|
||||
|
||||
init
|
||||
----
|
||||
|
||||
* /var/lib/incus
|
||||
|
||||
* unix.socket
|
||||
* unix.socket.user
|
||||
|
||||
.. code-block::
|
||||
|
||||
incus remote add \
|
||||
docker https://docker.io --protocol oci
|
||||
|
||||
.. code-block::
|
||||
|
||||
incus remote list
|
||||
|
||||
download
|
||||
--------
|
||||
|
||||
.. code-block::
|
||||
|
||||
incus image list \
|
||||
images:
|
||||
|
||||
.. code-block::
|
||||
|
||||
for alias in $(incus image alias list \
|
||||
--columns "a" \
|
||||
--format "compact,noheader" \
|
||||
); do
|
||||
incus image alias delete "${alias}"
|
||||
done
|
||||
|
||||
.. code-block::
|
||||
|
||||
incus image copy \
|
||||
images:name/version \
|
||||
local: \
|
||||
--copy-aliases \
|
||||
--vm
|
||||
|
||||
.. code-block::
|
||||
|
||||
incus image copy \
|
||||
docker:name:version \
|
||||
local: \
|
||||
--copy-aliases
|
||||
|
||||
.. code-block::
|
||||
|
||||
incus image alias list \
|
||||
--columns "a" \
|
||||
--format "compact,noheader"
|
||||
|
||||
.. code-block::
|
||||
|
||||
incus image list
|
Loading…
Add table
Add a link
Reference in a new issue