From d91c431292d817911f27be61dbccbbb63322b372 Mon Sep 17 00:00:00 2001 From: Allie Sadler Date: Tue, 12 Apr 2022 16:10:29 +0100 Subject: [PATCH] tweaks so users can copy and paste the code --- desktop/mac/install.md | 4 +++- desktop/windows/install.md | 6 +++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/desktop/mac/install.md b/desktop/mac/install.md index 60a392c950..a1b5190bef 100644 --- a/desktop/mac/install.md +++ b/desktop/mac/install.md @@ -94,7 +94,9 @@ Your Mac must meet the following requirements to install Docker Desktop successf After downloading `Docker.dmg`, run the following commands in a terminal to install Docker Desktop in the Applications folder: -```console + + +``` sudo hdiutil attach Docker.dmg sudo /Volumes/Docker/Docker.app/Contents/MacOS/install sudo hdiutil detach /Volumes/Docker diff --git a/desktop/windows/install.md b/desktop/windows/install.md index beccfe59ce..9d36785e00 100644 --- a/desktop/windows/install.md +++ b/desktop/windows/install.md @@ -126,19 +126,19 @@ Log out and log back in for the changes to take effect. After downloading **Docker Desktop Installer.exe**, run the following command in a terminal to install Docker Desktop: -```console +``` "Docker Desktop Installer.exe" install ``` If you’re using PowerShell you should run it as: -```console +``` Start-Process '.\win\build\Docker Desktop Installer.exe' -Wait install ``` If using the Windows Command Prompt: -```console +``` start /w "" "Docker Desktop Installer.exe" install ```