Unable to mount CHE_WORKSPACE_VOLUME
See original GitHub issueDescription
I’m trying to pass maven configuration by mounting CHE_WORKSPACE_VOLUME with this command
docker run -it -v /var/run/docker.sock:/var/run/docker.sock -v D:\Tools\che-data:/data -e CHE-WORKSPACE-VOLUME=D:\Tools\che-conf:/home/user/.m2 eclipse/che start
My settings.xml file is located in D:\Tools\che-conf I reproduced this closed issue but it failed. When I print the listed files/folders in any container-workspace, I did not find any .m2 folder or settings.xml file
Reproduction Steps
Just running the above command
OS and version:
Host: Windows 10
Eclipse che: latest
Issue Analytics
- State:
- Created 5 years ago
- Comments:6
Top Results From Across the Web
Unable to mount volume to workspace - eclipse/che - GitHub
More a question than an issue. I tried different ways to mount a volume to my workspaces, but all failed (with 5.0 and...
Read more >Solved: AppVolume 4.0 - Unable to mount provisioning volum...
Solved: Hello guys, I get the following error when I will package: Unable to mount provisioning volume "Package_Name" Any idea?
Read more >Solution to LINUX error "Unable to Mount Location ... - YouTube
Linux - Unable to mount locationmessage that I got was: Error mounting /dev/sdb5 at /media/aquilo/01CCD61542FA02C0: Command-line `mount -t ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@mulhauser no
CHE-WORKSPACE-VOLUME
should beCHE_WORKSPACE_VOLUME
Unix format is
/d/Tools/che-data
I close this issue and this the following working command line:
docker run -it -v /var/run/docker.sock:/var/run/docker.sock -v D:\Tools\che-data:/data -e CHE_WORKSPACE_VOLUME=/d/Tools/che-conf:/home/user/.m2:ro,Z eclipse/che start