You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Pull request #443 breaks the :ro suffix for read-only volumes.
Per the docker API documentation, the optional second colon of HostConfig.Binds separates the container path from the access mode of the mount. According to the docker user guide, Windows users are advised to use Unix-like paths such as /c/Users/path in order to avoid the colon issue.
The text was updated successfully, but these errors were encountered:
Thanks for pointing this out. It should be fixed now. We still need to cope with pathes like c:\Users\path since thats the format as it is stored in Maven properties. However, we will do the conversion on the fly within EnvUtils.fixupPath()
Pull request #443 breaks the
:ro
suffix for read-only volumes.Per the docker API documentation, the optional second colon of
HostConfig.Binds
separates the container path from the access mode of the mount. According to the docker user guide, Windows users are advised to use Unix-like paths such as/c/Users/path
in order to avoid the colon issue.The text was updated successfully, but these errors were encountered: