diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2023-05-07 19:25:57 +0200 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2023-05-07 19:28:43 +0200 |
commit | 06caa12d4992ec31ff231c013a463ab07eeb793c (patch) | |
tree | 56e2c95e9d0e63f439320c734ecccf4b6a9dc44e /doc/book/quick-start/_index.md | |
parent | 1ecd88c01f0857139921214a264128e5639e31db (diff) | |
download | garage-06caa12d4992ec31ff231c013a463ab07eeb793c.tar.gz garage-06caa12d4992ec31ff231c013a463ab07eeb793c.zip |
doc: Add information about Alpine Linux package to Quick Start
Diffstat (limited to 'doc/book/quick-start/_index.md')
-rw-r--r-- | doc/book/quick-start/_index.md | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/doc/book/quick-start/_index.md b/doc/book/quick-start/_index.md index f01789a3..5863c09b 100644 --- a/doc/book/quick-start/_index.md +++ b/doc/book/quick-start/_index.md @@ -40,6 +40,25 @@ or if you want a build customized for your system, you can [build Garage from source](@/documentation/cookbook/from-source.md). +### 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 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). + + ## Configuring and starting Garage ### Generating a first configuration file |