From e2ec47ae4d884e73a7bf6464aeb086f2d437b790 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javi=20Mart=C3=ADn?= Date: Mon, 13 Dec 2021 14:35:47 +0100 Subject: [PATCH] Use the same URL to clone the repo everywhere We were using the SSH URL in the Docker documentation, while using the HTTPS URL everywhere else. The HTTPS URL is the right one in this case because it's meant for people who won't have write access to the repository. --- docs/en/installation/docker.md | 2 +- docs/es/installation/docker.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/en/installation/docker.md b/docs/en/installation/docker.md index d4cd947b8..b34ca20aa 100644 --- a/docs/en/installation/docker.md +++ b/docs/en/installation/docker.md @@ -64,7 +64,7 @@ If you encounter the "WSL 2 installation incomplete" error: Clone the repo on your computer and enter the folder: ```bash -git clone git@github.com:consul/consul.git +git clone https://github.com/consul/consul.git cd consul ``` diff --git a/docs/es/installation/docker.md b/docs/es/installation/docker.md index 25814db8b..477bebaca 100644 --- a/docs/es/installation/docker.md +++ b/docs/es/installation/docker.md @@ -64,7 +64,7 @@ Si encuentras el error "WSL 2 installation incomplete": Clona el repositorio en tu ordenador y entra en el directorio: ```bash -git clone git@github.com:consul/consul.git +git clone https://github.com/consul/consul.git cd consul ```