test workflow build and push on gitea registry
Build and Push Docker Image / checkout_repository (push) Successful in 6s Details
Build and Push Docker Image / login_docker_registry (push) Successful in 5s Details
Build and Push Docker Image / build_and_push_image (push) Failing after 9s Details

This commit is contained in:
Nicolas CARON 2024-03-13 14:32:58 +01:00
parent eb7ff92322
commit 9b836bf4c8
1 changed files with 13 additions and 1 deletions

View File

@ -53,9 +53,21 @@ jobs:
# - name: Test tags
# run: |
# echo "Latest tag found: ${{ steps.get_tags.outputs.latest_tag }}"
- name: Add Docker Repository
run: |
apt-get update
apt-get install ca-certificates curl
install -m 0755 -d /etc/apt/keyrings
curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc
chmod a+r /etc/apt/keyrings/docker.asc
echo \
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \
$(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \
tee /etc/apt/sources.list.d/docker.list > /dev/null
- name: Install Docker
run: |
apt update
apt-get update
apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
dockerd &