summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrusty-snake <41237666+rusty-snake@users.noreply.github.com>2022-03-19 22:12:28 +0100
committerrusty-snake <41237666+rusty-snake@users.noreply.github.com>2022-03-22 17:01:28 +0100
commit798b87ce3a71188f3d5d50a67191f1ae369e4df9 (patch)
tree38a0fafd20d70cb985292a6a7d7e0e0228c943e3
parent90e46b5ee3afda2e29c6f393cf265064116f6894 (diff)
downloadbubblewrap-798b87ce3a71188f3d5d50a67191f1ae369e4df9.tar.gz
Add install instruction to README.md
Closes #315 Closes #363 Signed-off-by: rusty-snake <41237666+rusty-snake@users.noreply.github.com>
-rw-r--r--README.md24
1 files changed, 24 insertions, 0 deletions
diff --git a/README.md b/README.md
index f7eb85f..a6f84db 100644
--- a/README.md
+++ b/README.md
@@ -62,6 +62,30 @@ clusters. Having the ability for unprivileged users to use container
features would make it significantly easier to do interactive
debugging scenarios and the like.
+Installation
+------------
+
+bubblewrap is available in the package repositories of the most Linux distributions
+and can be installed from there.
+
+If you need to build bubblewrap from source, you can do this with meson or autotools.
+
+meson:
+
+```
+meson _builddir
+meson compile -C _builddir
+meson install -C _builddir
+```
+
+autotools:
+
+```
+./autogen.sh
+make
+sudo make install
+```
+
Usage
-----