From fc243ce27aa120b2c3ceefc76eae1cf518cd0867 Mon Sep 17 00:00:00 2001 From: ivanbaluta Date: Tue, 14 Oct 2025 13:40:34 +0700 Subject: [PATCH 1/2] pw-container: add page --- pages/linux/pw-container.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pages/linux/pw-container.md diff --git a/pages/linux/pw-container.md b/pages/linux/pw-container.md new file mode 100644 index 00000000000000..ced2a3ccfef607 --- /dev/null +++ b/pages/linux/pw-container.md @@ -0,0 +1,24 @@ +# pw-container + +> Run a program in a new security context. +> More information: . + +- Create a new security context and print its socket address to 'stdout': + +`pw-container` + +- Run a specific program within a new security context: + +`pw-container {{command}} {{argument1 argument2 ...}}` + +- Run a program, connecting to a specific remote PipeWire instance: + +`pw-container {{[-r|--remote]}} {{remote_instance_name}} {{command}}` + +- Run a program in a new context with specific properties using a JSON object: + +`pw-container {{[-P|--properties]}} '{{{"key": "value"}}}' {{command}}` + +- Display help: + +`pw-container {{[-h|--help]}}` From 6fa7f60bac7a4e68c476ae796a6eaa608a855767 Mon Sep 17 00:00:00 2001 From: Ivan <50071699+ivanbaluta@users.noreply.github.com> Date: Wed, 15 Oct 2025 10:09:26 +0700 Subject: [PATCH 2/2] Update pages/linux/pw-container.md Co-authored-by: Dylan <145150333+dmmqz@users.noreply.github.com> --- pages/linux/pw-container.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/linux/pw-container.md b/pages/linux/pw-container.md index ced2a3ccfef607..54c30d3ce81672 100644 --- a/pages/linux/pw-container.md +++ b/pages/linux/pw-container.md @@ -3,7 +3,7 @@ > Run a program in a new security context. > More information: . -- Create a new security context and print its socket address to 'stdout': +- Create a new security context and print its socket address to `stdout`: `pw-container`