diff options
author | Alex Auvolat <alex@adnab.me> | 2023-08-28 12:20:34 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2023-08-28 12:20:34 +0200 |
commit | 51011e68b16efc2232606bee47fcdc9e8a11068e (patch) | |
tree | dba848e2bf6ebd579f617093b4c9bb21fa9da020 /doc/book/cookbook | |
parent | a54a1f5616a49f31d63c38ffb5c7f47ce160160c (diff) | |
download | garage-51011e68b16efc2232606bee47fcdc9e8a11068e.tar.gz garage-51011e68b16efc2232606bee47fcdc9e8a11068e.zip |
move alpine linux info to binary package page
Diffstat (limited to 'doc/book/cookbook')
-rw-r--r-- | doc/book/cookbook/binary-packages.md | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/doc/book/cookbook/binary-packages.md b/doc/book/cookbook/binary-packages.md index 606de2b6..0a6ad8fc 100644 --- a/doc/book/cookbook/binary-packages.md +++ b/doc/book/cookbook/binary-packages.md @@ -7,10 +7,23 @@ Garage is also available in binary packages on: ## Alpine Linux +If you use Alpine Linux, you can simply install the +[garage](https://pkgs.alpinelinux.org/packages?name=garage) package from the +Alpine Linux repositories (available since v3.17): + ```bash -apk install garage +apk add garage ``` +The default configuration file is installed to `/etc/garage.toml`. You can run +Garage using: `rc-service garage start`. If you don't specify `rpc_secret`, it +will be automatically replaced with a random string on the first start. + +Please note that this package is built without Consul discovery, Kubernetes +discovery, OpenTelemetry exporter, and K2V features (K2V will be enabled once +it's stable). + + ## Arch Linux Garage is available in the [AUR](https://aur.archlinux.org/packages/garage). |