Skip to content

Commit 7be761c

Browse files
committed
🐛(makefile) Windows compatibility fix for Docker volume mounting
On Windows systems, Docker volume paths starting with a single / can be interpreted incorrectly by the Docker daemon. The double slash (//) helps Docker on Windows properly interpret the path as an absolute path within the container, ensuring that the working directory is correctly set when running mail-related yarn commands.
1 parent 5181bba commit 7be761c

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@ and this project adheres to
1818
- #1244
1919
- #1270
2020

21+
### Fixed
22+
23+
- 🐛(makefile) Windows compatibility fix for Docker volume mounting #1264
24+
25+
2126
## [3.5.0] - 2025-07-31
2227

2328
### Added

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ COMPOSE_RUN_CROWDIN = $(COMPOSE_RUN) crowdin crowdin
4848

4949
# -- Backend
5050
MANAGE = $(COMPOSE_RUN_APP) python manage.py
51-
MAIL_YARN = $(COMPOSE_RUN) -w /app/src/mail node yarn
51+
MAIL_YARN = $(COMPOSE_RUN) -w //app/src/mail node yarn
5252

5353
# -- Frontend
5454
PATH_FRONT = ./src/frontend

0 commit comments

Comments
 (0)