From 5b4567098a06abe1041886b9ec6642da677c8555 Mon Sep 17 00:00:00 2001 From: Andras Bacsai <5845193+andrasbacsai@users.noreply.github.com> Date: Fri, 5 Dec 2025 14:05:18 +0100 Subject: [PATCH] Fix Garage TOML config: move RPC settings to root level MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Garage v2.x expects rpc_bind_addr, rpc_secret_file, and bootstrap_peers at the root level of the TOML config, not inside a [rpc] section. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- templates/compose/garage.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/templates/compose/garage.yaml b/templates/compose/garage.yaml index 865a9c89a..a413c44dd 100644 --- a/templates/compose/garage.yaml +++ b/templates/compose/garage.yaml @@ -35,8 +35,7 @@ services: compression_level = 1 block_size = "1M" - [rpc] - bind_addr = "[::]:3901" + rpc_bind_addr = "[::]:3901" rpc_secret_file = "env:GARAGE_RPC_SECRET" bootstrap_peers = []