From 3a2e0c8e18351560f76c03c556584652a4358d2f Mon Sep 17 00:00:00 2001 From: Seth Reid Date: Wed, 28 Feb 2018 10:18:05 +1300 Subject: [PATCH] Added required line to update TLS version Github now only supports TLS1.2 and you need to run the following command to make sure these instructions work. Please let me know if my phrasing is not good and I can update to make it work --- compose/install.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/compose/install.md b/compose/install.md index fe60143a0b..86a363fc4b 100644 --- a/compose/install.md +++ b/compose/install.md @@ -65,8 +65,14 @@ Docker Compose. To do so, follow these steps: Search for PowerShell, right-click, and choose **Run as administrator**. When asked if you want to allow this app to make changes to your device, click **Yes**. + + In Powershell, since Github now requires TLS1.2, run the following: + + ```none + [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 + ``` - In PowerShell, run the following command to download + Then run the following command to download Docker Compose, replacing `$dockerComposeVersion` with the specific version of Compose you want to use: