2023-02-04 09:19:19 +00:00
|
|
|
+++
|
|
|
|
|
title = "Binary packages"
|
|
|
|
|
weight = 11
|
|
|
|
|
+++
|
|
|
|
|
|
|
|
|
|
Garage is also available in binary packages on:
|
|
|
|
|
|
|
|
|
|
## Alpine Linux
|
|
|
|
|
|
2023-08-28 12:20:34 +02:00
|
|
|
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):
|
|
|
|
|
|
2023-02-04 09:19:19 +00:00
|
|
|
```bash
|
2023-08-28 12:20:34 +02:00
|
|
|
apk add garage
|
2023-02-04 09:19:19 +00:00
|
|
|
```
|
|
|
|
|
|
2025-10-24 11:22:32 +02:00
|
|
|
The default configuration file is installed to `/etc/garage/garage.toml`. You can run
|
|
|
|
|
Garage using: `rc-service garage start`.
|
|
|
|
|
|
2025-10-24 11:25:33 +02:00
|
|
|
If you don't specify `rpc_secret`, it will be automatically replaced with a random string on the first start.
|
2023-08-28 12:20:34 +02:00
|
|
|
|
|
|
|
|
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).
|
|
|
|
|
|
|
|
|
|
|
2023-02-04 09:19:19 +00:00
|
|
|
## Arch Linux
|
|
|
|
|
|
2025-12-20 13:16:38 +00:00
|
|
|
Garage is available in the official repositories under [extra](https://archlinux.org/packages/extra/x86_64/garage).
|
2023-02-04 09:19:19 +00:00
|
|
|
|
2026-01-12 19:23:32 +01:00
|
|
|
```bash
|
|
|
|
|
pacman -S garage
|
|
|
|
|
```
|
|
|
|
|
|
2023-02-04 09:19:19 +00:00
|
|
|
## FreeBSD
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
pkg install garage
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## NixOS
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
nix-shell -p garage
|
|
|
|
|
```
|
2025-12-21 17:13:16 +00:00
|
|
|
|
|
|
|
|
## conda-forge
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
pixi global install garage
|
|
|
|
|
```
|