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 6s Details
Build and Push Docker Image / build_and_push_image (push) Failing after 4s Details

This commit is contained in:
Nicolas CARON 2024-03-13 14:44:01 +01:00
parent 414ba0809d
commit ad69095f72
1 changed files with 1 additions and 18 deletions

View File

@ -29,7 +29,7 @@ jobs:
build_and_push_image:
runs-on: ubuntu-latest
container: ubuntu:latest
container: docker:latest
steps:
# - name: Run Docker
@ -53,23 +53,6 @@ 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 -y 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-get update
apt-get install -y docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
dockerd
- name: Verify Docker installation
run: docker --version