Skip to content
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

fix docker setup for windows #705

Merged
merged 1 commit into from
Feb 21, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions scripts/src/main/resources/scripts/command/docker
Original file line number Diff line number Diff line change
Expand Up @@ -37,16 +37,11 @@ function doSetup() {
else
doFail "Sorry, docker-installation support is not yet implemented for your OS. Please install manually or help devonfw-ide to support it for your OS by contributing a pull-request."
fi
local ts="${version}"
if [ "${ts}" = "stable" ]
then
ts="$(date +%Y-%m)"
fi
doDownload "-" "" "docker" "${version}" "" "${code}"
if doIsWindows
then
doEcho "Installating Docker Desktop for Windows..."
doRunCommand "${DEVON_DOWNLOAD_DIR}/${filename}"
doRunCommand "${DEVON_DOWNLOAD_DIR}/docker-stable-win.exe"
elif doIsMacOs
then
doEcho "Installating Docker Desktop for MacOS..."
Expand Down