From 24c457a5d45f807d1e488c2b24033b6775f6f7d1 Mon Sep 17 00:00:00 2001 From: f Date: Fri, 17 Apr 2026 03:22:36 -0300 Subject: [PATCH 1/3] fix: proper length for rpc secret --- .env.sample | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.env.sample b/.env.sample index d7c410b..043e3d8 100644 --- a/.env.sample +++ b/.env.sample @@ -5,7 +5,7 @@ DOMAIN=garage.example.com LETS_ENCRYPT_ENV=production COMPOSE_FILE="compose.yml" -SECRET_RPC_SECRET_VERSION=v1 # length=32 charset=hex +SECRET_RPC_SECRET_VERSION=v1 # length=64 charset=hex # Changing the replication factor after initial deployment is not # supported and requires deleting the existing cluster layout metadata. -- 2.49.0 From aded3647a908c5a404c01e16f1936ca42ba2ab81 Mon Sep 17 00:00:00 2001 From: f Date: Fri, 17 Apr 2026 11:23:30 -0300 Subject: [PATCH 2/3] fix: upgrade to 2.3.0 --- compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compose.yml b/compose.yml index e6870a5..c1d75a8 100644 --- a/compose.yml +++ b/compose.yml @@ -3,7 +3,7 @@ version: "3.8" services: app: - image: dxflrs/garage:v2.1.0 + image: dxflrs/garage:v2.3.0 configs: - source: garage_conf target: /etc/garage.toml -- 2.49.0 From 1ebc2c2eca35a1cee598303a9d94145b902c85d2 Mon Sep 17 00:00:00 2001 From: f Date: Tue, 21 Apr 2026 20:47:45 -0300 Subject: [PATCH 3/3] feat: set container hostname to domain this allows finding the hostname on `garage status` --- compose.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/compose.yml b/compose.yml index c1d75a8..51bef58 100644 --- a/compose.yml +++ b/compose.yml @@ -4,6 +4,7 @@ version: "3.8" services: app: image: dxflrs/garage:v2.3.0 + hostname: "${DOMAIN}" configs: - source: garage_conf target: /etc/garage.toml -- 2.49.0