From fbdca7c5a23a47ac2e80abac43266cf12a3530db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sat, 15 Nov 2025 11:57:24 +0100 Subject: [PATCH] fix: correct Gitea custom directory mount path MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change from ./dev/custom to ./custom since compose.yaml is in dev/ directory 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- dev/compose.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/compose.yaml b/dev/compose.yaml index 0b9a798..fae8126 100644 --- a/dev/compose.yaml +++ b/dev/compose.yaml @@ -11,7 +11,7 @@ services: - gitea_config:/etc/gitea - /etc/timezone:/etc/timezone:ro - /etc/localtime:/etc/localtime:ro - - ./dev/custom:/data/gitea/custom:ro + - ./custom:/data/gitea/custom:ro environment: TZ: ${TIMEZONE:-Europe/Berlin} USER_UID: 1000