Skip to content

Commit

Permalink
Fixeo comandos instalación de Docker
Browse files Browse the repository at this point in the history
  • Loading branch information
martinchogimenez committed Apr 17, 2024
1 parent f72abad commit e6bd651
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/CI_Proveedores-QA.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,13 @@ jobs:
uses: actions/checkout@v2

- name: Install Docker
run: |
sudo apt-get update
sudo apt-get remove -y containerd.io # Elimina containerd.io si está instalado
sudo apt-get install -y docker.io
run:
sudo yum update -y
sudo yum install -y docker
sudo service docker start |
# sudo apt-get update
# sudo apt-get remove -y containerd.io # Elimina containerd.io si está instalado
# sudo apt-get install -y docker.io

- name: Build Docker Image
run: |
Expand Down

0 comments on commit e6bd651

Please sign in to comment.