mirror of
https://github.com/suitenumerique/docs
synced 2026-04-21 13:37:20 +00:00
🐛(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.
This commit is contained in:
parent
5181bba083
commit
7be761ce84
2 changed files with 6 additions and 1 deletions
|
|
@ -18,6 +18,11 @@ and this project adheres to
|
|||
- #1244
|
||||
- #1270
|
||||
|
||||
### Fixed
|
||||
|
||||
- 🐛(makefile) Windows compatibility fix for Docker volume mounting #1264
|
||||
|
||||
|
||||
## [3.5.0] - 2025-07-31
|
||||
|
||||
### Added
|
||||
|
|
|
|||
2
Makefile
2
Makefile
|
|
@ -48,7 +48,7 @@ COMPOSE_RUN_CROWDIN = $(COMPOSE_RUN) crowdin crowdin
|
|||
|
||||
# -- Backend
|
||||
MANAGE = $(COMPOSE_RUN_APP) python manage.py
|
||||
MAIL_YARN = $(COMPOSE_RUN) -w /app/src/mail node yarn
|
||||
MAIL_YARN = $(COMPOSE_RUN) -w //app/src/mail node yarn
|
||||
|
||||
# -- Frontend
|
||||
PATH_FRONT = ./src/frontend
|
||||
|
|
|
|||
Loading…
Reference in a new issue