diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-07-24 13:47:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-24 13:47:41 +0200 |
commit | 091778354efa2d61e86ec9eea9323fa7809875c8 (patch) | |
tree | 8bccb2a507c7e88b6dff0c4e6fa3fffc59da8f7e /install.md | |
parent | eae9a009b2038d78a2cc92db740c99b1b8dc0101 (diff) | |
parent | 1c0603e9b8b842390abc2bbe2642fdc76f92a5cd (diff) | |
download | podman-091778354efa2d61e86ec9eea9323fa7809875c8.tar.gz podman-091778354efa2d61e86ec9eea9323fa7809875c8.tar.bz2 podman-091778354efa2d61e86ec9eea9323fa7809875c8.zip |
Merge pull request #3615 from vrothberg/build-tags
install.md: mention all build tags
Diffstat (limited to 'install.md')
-rw-r--r-- | install.md | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/install.md b/install.md index 5583e9610..49a67f984 100644 --- a/install.md +++ b/install.md @@ -318,11 +318,19 @@ To add build tags to the make option the `BUILDTAGS` variable must be set, for e make BUILDTAGS='seccomp apparmor' ``` -| Build Tag | Feature | Dependency | -|-----------|------------------------------------|-------------| -| seccomp | syscall filtering | libseccomp | -| selinux | selinux process and mount labeling | libselinux | -| apparmor | apparmor profile support | libapparmor | +| Build Tag | Feature | Dependency | +|----------------------------------|------------------------------------|----------------------| +| apparmor | apparmor support | libapparmor | +| exclude_graphdriver_btrfs | exclude btrfs | libbtrfs | +| exclude_graphdriver_devicemapper | exclude device-mapper | libdm | +| libdm_no_deferred_remove | exclude deferred removal in libdm | libdm | +| ostree | ostree support (requires selinux) | ostree-1, libselinux | +| containers_image_ostree_stub | exclude ostree | | +| seccomp | syscall filtering | libseccomp | +| selinux | selinux process and mount labeling | | +| systemd | journald logging | libsystemd | + +Note that Podman does not officially support device-mapper. Thus, the `exclude_graphdriver_devicemapper` tag is mandatory. ### Vendoring - Dependency Management |