test workflow build and push on gitea registry
Build and Push Docker Image / build_and_push (push) Failing after 14s
Details
Build and Push Docker Image / build_and_push (push) Failing after 14s
Details
This commit is contained in:
parent
8865c48bb7
commit
e933481eb3
|
@ -3,39 +3,25 @@ name: Build and Push Docker Image
|
|||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
- dev
|
||||
|
||||
jobs:
|
||||
build_and_push:
|
||||
runs-on: ubuntu-22.04
|
||||
container: ghcr.io/catthehacker/ubuntu:act-latest
|
||||
runs-on: ubuntu-latest
|
||||
container:
|
||||
image: ghcr.io/catthehacker/ubuntu:act-latest
|
||||
|
||||
steps:
|
||||
- name: Set ulimit
|
||||
run: |
|
||||
ulimit -n 524288
|
||||
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
apt-get update
|
||||
apt-get install -y apt-transport-https ca-certificates curl software-properties-common
|
||||
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo 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 -y docker-ce docker-ce-cli containerd.io
|
||||
|
||||
# Installation de Docker
|
||||
# - name: Install Docker
|
||||
# run: |
|
||||
# apt-get update
|
||||
# apt-get install -y docker.io
|
||||
|
||||
- name: Create a symbolic link Docker
|
||||
run: ln -s ~/.docker/run/docker.sock /var/run/docker.sock
|
||||
|
||||
- name: Login to Docker Registry
|
||||
uses: docker/login-action@v2
|
||||
with:
|
||||
|
@ -50,8 +36,7 @@ jobs:
|
|||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v2
|
||||
with:
|
||||
mount-docker-socket: true
|
||||
|
||||
|
||||
# - name: Get Gitea Tags
|
||||
# id: get_tags
|
||||
|
@ -71,4 +56,3 @@ jobs:
|
|||
context: "{{defaultContext}}"
|
||||
push: true
|
||||
tags: "git.coopgo.io/coopgo-platform/mobility-accounts:test"
|
||||
mount-docker-socket: true
|
Loading…
Reference in New Issue