From b3fdeeaf24c42dfa4e672bbf27244a3f97bff948 Mon Sep 17 00:00:00 2001 From: Sam Waite <61422617+s-waite@users.noreply.github.com> Date: Tue, 24 Oct 2023 14:15:53 -0400 Subject: [PATCH] portablectl: add page (#11212) --- pages/linux/portablectl.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pages/linux/portablectl.md diff --git a/pages/linux/portablectl.md b/pages/linux/portablectl.md new file mode 100644 index 000000000..952842b27 --- /dev/null +++ b/pages/linux/portablectl.md @@ -0,0 +1,24 @@ +# portablectl + +> A systemd utility for managing and deploying portable service images on Linux systems. +> More information: . + +- List available portable service images discovered in the portable image search paths: + +`portablectl list` + +- Attach a portable service image to the host system: + +`portablectl attach {{path/to/image}}` + +- Detach a portable service image from the host system: + +`portablectl detach {{path/to/image|image_name}}` + +- Display details and metadata about a specified portable service image: + +`portablectl inspect {{path/to/image}}` + +- Check if a portable service image is attached to the host system: + +`portablectl is-attached {{path/to/image|image_name}}`