test workflow build and push on gitea registry
Build and Push Docker Image / test (push) Failing after 13s Details

This commit is contained in:
Nicolas CARON 2024-03-15 11:45:26 +01:00
parent 62a756d2f3
commit 09c7d11188
1 changed files with 6 additions and 6 deletions

View File

@ -25,12 +25,12 @@ jobs:
- name: Install Docker
run: |
sudo apt-get update
sudo apt-get install apt-transport-https ca-certificates curl software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
sudo apt-get update
sudo apt-get install docker-ce
apt-get update
apt-get install apt-transport-https ca-certificates curl software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add -
add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
apt-get update
apt-get install docker-ce
docker --version
- name: Login to Docker Registry