mirror of
https://github.com/containers/podman.git
synced 2025-05-30 23:17:20 +08:00

Move the options for the podman build doc to a common md that can be used by both podman build and podman farm build. Signed-off-by: Urvashi Mohnani <umohnani@redhat.com>
18 lines
885 B
Markdown
18 lines
885 B
Markdown
####> This option file is used in:
|
|
####> podman build, farm build
|
|
####> If file is edited, make sure the changes
|
|
####> are applicable to all of those.
|
|
#### **--isolation**=*type*
|
|
|
|
Controls what type of isolation is used for running processes as part of `RUN`
|
|
instructions. Recognized types include *oci* (OCI-compatible runtime, the
|
|
default), *rootless* (OCI-compatible runtime invoked using a modified
|
|
configuration and its --rootless option enabled, with *--no-new-keyring
|
|
--no-pivot* added to its *create* invocation, with network and UTS namespaces
|
|
disabled, and IPC, PID, and user namespaces enabled; the default for
|
|
unprivileged users), and *chroot* (an internal wrapper that leans more toward
|
|
chroot(1) than container technology).
|
|
|
|
Note: You can also override the default isolation type by setting the
|
|
BUILDAH\_ISOLATION environment variable. `export BUILDAH_ISOLATION=oci`
|