-
Notifications
You must be signed in to change notification settings - Fork 409
🐛 Fix some windows compatibilities #1263
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
2c6fe4b
to
5776ea4
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The expected behavior (immediate duplication) is not consistent.
Hey ! after few tests on my side :
Only sub-documents can be duplicated without any constraints (like title or content).
For other types of documents, especially main, public, or empty ones, duplication likely requires some mandatory fields, such as a title. ( error 500 instead )
I don't think it is related to this PR, this PR fixes the But good spot, could you open an issue about it ? |
Oh sorry yes this is not related to this PR, for this one :
I tried again after running make bootstrap FLUSH_ARGS='--no-input', and I was not able to reproduce the duplication issue anymore 😮 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nice !
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.
With Minio Docker and Windows, the user ID needs to be set to `0:0` to avoid permission issues. This change ensures that the Minio container runs with root privileges on Windows, which is necessary for proper file access and management.
5776ea4
to
0cf8b9d
Compare
Purpose
The project has some compatibilities issues with Windows.
Proposal