Added gitea CI/CD configuration
Create Docker Image / Build Docker Image (push) Failing after 14s Details

This commit is contained in:
Deon George 2024-04-07 11:03:24 +10:00
parent 44777f7856
commit 689eec88ec
1 changed files with 16 additions and 50 deletions

View File

@ -10,78 +10,44 @@ jobs:
image: docker:dind
privileged: true
env:
BRANCH: master
ARCH: x86_64
VERSION: 8.3-fpm
DOCKER_HOST: tcp://127.0.0.1:2375
VERSIONARCH: ${VERSION}-${ARCH}
steps:
- name: Environment
- name: Environment Setup
run: |
if [ ! -d build-cache ]; then mkdir build-cache; fi
# If we have a proxy use it
if [ -n "${HTTP_PROXY}" ]; then echo "HTTP PROXY [${HTTP_PROXY}]"; sed -i -e s'/https/http/' /etc/apk/repositories; fi
apk add git curl nodejs jq
# Some pre-reqs
apk add git curl nodejs
# Start docker
( dockerd --host=tcp://0.0.0.0:2375 --tls=false & ) && sleep 3
docker info && docker version
## Some debugging info
# docker info && docker version
# env|sort
# docker login -u "$CI_DEPENDENCY_PROXY_USER" -p "$CI_DEPENDENCY_PROXY_PASSWORD" "$CI_SERVER_HOST"
#echo "$CI_JOB_TOKEN" | docker login -u "$CI_REGISTRY_USER" "$CI_REGISTRY" --password-stdin
echo "++ PS" && ps -Af
echo "++ Environment" && env|sort
echo "++ PWD" && pwd
echo "++ ls" && ls -al
- name: Checkout Code
uses: actions/checkout@v4
- name: Prepare Registry FQDN
- name: Registry FQDN Setup
id: registry
run: |
registry=${{ github.server_url }}
registry=${registry##http*://}
echo "registry=${registry}" >> "$GITHUB_OUTPUT"
echo "registry=${registry##http*://}" >> "$GITHUB_OUTPUT"
#- name: Environment part 2
# run: |
# echo "++ Environment" && env|sort
# echo "++ PWD" && pwd
# echo "++ ls" && ls -al
# echo "++ workspace" && ls ${{ gitea.workspace }}
# echo "++ host is ${{ gitea.repository }}"
# echo "++ registry is ${{ steps.registry.outputs.registry }}"
# echo "++ container ${{ steps.registry.outputs.registry }}/${{ env.GITHUB_REPOSITORY }}:${{ env.VERSION }}"
# echo "++ gitea server/domain ${{ gitea.server }}/${{ gitea.domain }}:latest"
# echo "++ github token ${{ gitea.TOKEN }}"
# echo "++ runtime token ${{ env.ACTIONS_RUNTIME_TOKEN }}"
#- name: Build
# run: |
# set -x
# if [ -f init ]; then chmod 500 init; fi
# docker build ${HTTP_PROXY:+--build-arg HTTP_PROXY=${HTTP_PROXY}} -t ${{ steps.registry.outputs.registry }}/${{ env.GITHUB_REPOSITORY }}:${{ env.VERSION }}
# docker push ${{ steps.registry.outputs.registry }}/${{ env.GITHUB_REPOSITORY }}:${{ env.VERSION }}
# name: Set up Docker Buildx
# uses: https://github.com/docker/setup-buildx-action@v3
# with:
# config-inline: |
# [registry."<my-private-unsecure-git-repository-ip-address>:5000"]
# http = true
# insecure = true
- name: Login to Container Registry
- name: Container Registry Login
uses: docker/login-action@v2
with:
registry: ${{ steps.registry.outputs.registry }}
username: ${{ gitea.actor }}
password: ${{ secrets.PKG_WRITE_TOKEN }}
- name: Build and push Docker image
- name: Code Checkout
uses: actions/checkout@v4
- name: Build and Push Docker Image
uses: docker/build-push-action@v5
# env:
# GIT_AUTH_TOKEN: ${{ secrets.PKG_WRITE_TOKEN }}
with:
context: .
file: ./Dockerfile
push: true
tags: "${{ steps.registry.outputs.registry }}/${{ env.GITHUB_REPOSITORY }}:${{ env.VERSION }}"
tags: "${{ steps.registry.outputs.registry }}/${{ env.GITHUB_REPOSITORY }}:${{ env.VERSIONARCH }}"