This repository was archived by the owner on Sep 26, 2021. It is now read-only.
This repository was archived by the owner on Sep 26, 2021. It is now read-only.
[Windows] Docker Quickstart Terminal shortcut broken when installed on a different drive #424
Open
Description
When installing Docker Toolbox on a different hard drive(eg. D:\
), shortcut is still pointing to the GIT bash executable on the C:\
drive whilst GIT was also installed the D:\
drive.
Target:
"C:\Program Files\Git\bin\bash.exe" --login -i "D:\Program Files\Docker Toolbox\start.sh"
Obviously, this should be:
"D:\Program Files\Git\bin\bash.exe" --login -i "D:\Program Files\Docker Toolbox\start.sh"
After manually changing it, the whole installation works perfectly.