From 5e6e4bbd78ec2adfeca27bebb8aa95690b239f07 Mon Sep 17 00:00:00 2001 From: ale Date: Wed, 27 May 2020 23:53:04 +0200 Subject: [PATCH] out numbers --- taller/Parte0.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/taller/Parte0.md b/taller/Parte0.md index c1b8896..03cbe5a 100644 --- a/taller/Parte0.md +++ b/taller/Parte0.md @@ -2,7 +2,7 @@ ## Instalar docker en debian -### 1. Instalar dependencias +### Instalar dependencias ``` apt-get install \ apt-transport-https \ @@ -12,12 +12,12 @@ apt-get install \ software-properties-common ``` -### 2. Añadir clave repositorio +### Añadir clave repositorio ``` curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add - ``` -### 3. Añadir repositorio +### Añadir repositorio ``` add-apt-repository \ "deb [arch=amd64] https://download.docker.com/linux/debian \ @@ -25,7 +25,7 @@ add-apt-repository \ stable" ``` -### 4. Instalar docker +### Instalar docker ``` apt-get update && apt-get install docker-ce docker-ce-cli containerd.io ```