From 76633403b23161860e0bac0a9588a9fd4a3029dd Mon Sep 17 00:00:00 2001 From: Ben Vincent Date: Tue, 28 Apr 2026 23:44:14 +1000 Subject: [PATCH] chore: move example config files into examples/ MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Keeps the repo root clean — example remotes.yaml lives in examples/. docker-compose.yml updated to mount from the new path. --- docker-compose.yml | 2 +- remotes.yaml => examples/remotes.yaml | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename remotes.yaml => examples/remotes.yaml (100%) diff --git a/docker-compose.yml b/docker-compose.yml index 81e94ae..a5eca7d 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -10,7 +10,7 @@ services: ports: - "8000:8000" volumes: - - ./remotes.yaml:/app/remotes.yaml:ro,z + - ./examples/remotes.yaml:/app/remotes.yaml:ro,z - ./ca-bundle.pem:/app/ca-bundle.pem:ro,z environment: - CONFIG_PATH=/app/remotes.yaml diff --git a/remotes.yaml b/examples/remotes.yaml similarity index 100% rename from remotes.yaml rename to examples/remotes.yaml