diff options
author | Alex <alex@adnab.me> | 2023-03-06 10:17:19 +0000 |
---|---|---|
committer | Alex <alex@adnab.me> | 2023-03-06 10:17:19 +0000 |
commit | 3d37be33a882049dcb712da14667f7904c6cb418 (patch) | |
tree | be690da7d8cc596f49935c96cb040ddf572e90bd /doc/book/cookbook/binary-packages.md | |
parent | a5f7a7925088c1169f2d88ca4dd1ed83fce37e35 (diff) | |
parent | f056ad569dc599ba5f145819bc91a8f15e105347 (diff) | |
download | garage-3d37be33a882049dcb712da14667f7904c6cb418.tar.gz garage-3d37be33a882049dcb712da14667f7904c6cb418.zip |
Merge pull request 'binary-packages.md: Added.' (#515) from jpds/garage:doc-binary-packages into main
Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/garage/pulls/515
Diffstat (limited to 'doc/book/cookbook/binary-packages.md')
-rw-r--r-- | doc/book/cookbook/binary-packages.md | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/doc/book/cookbook/binary-packages.md b/doc/book/cookbook/binary-packages.md new file mode 100644 index 00000000..606de2b6 --- /dev/null +++ b/doc/book/cookbook/binary-packages.md @@ -0,0 +1,28 @@ ++++ +title = "Binary packages" +weight = 11 ++++ + +Garage is also available in binary packages on: + +## Alpine Linux + +```bash +apk install garage +``` + +## Arch Linux + +Garage is available in the [AUR](https://aur.archlinux.org/packages/garage). + +## FreeBSD + +```bash +pkg install garage +``` + +## NixOS + +```bash +nix-shell -p garage +``` |