toolkit icon indicating copy to clipboard operation
toolkit copied to clipboard

mount denied: source path too many colons

Open BluBloos opened this issue 1 year ago • 2 comments

Steps to Reproduce

  1. follow readme steps (on a Windows OS system).
  2. be dissapointed because it says "Error response from daemon: mount denied: the source path too many colons".

Expected Behaviour

should not get dissapointed

Context

just wanted it to work

BluBloos avatar Nov 04 '24 14:11 BluBloos

I have the exact same problem.

If you ever find a solution except : installing Unix system on a virtual box. I'd love you share it to me

samlemaire avatar Nov 16 '24 13:11 samlemaire

The problem may be caused by the filename on Windows system, I solved it by these steps:

  1. find the file "toolkit/lib/docker-compose.base.yml"
  2. change volumes: - "${OVERLEAF_DATA_PATH}:${OVERLEAF_IN_CONTAINER_DATA_PATH}" into volumes: - "${OVERLEAF_DATA_PATH}:\\${OVERLEAF_IN_CONTAINER_DATA_PATH}" This solves my problem. I guess adding "\\"(two backslashes) can prevent the windows system generating a string like "overleaf_data_path: C: \xxx" (with too many ":").

CharlieHu99 avatar Nov 29 '24 07:11 CharlieHu99