ffs
Some checks failed
Build and Push Docker Image / build (push) Failing after 1m56s

This commit is contained in:
Christoph Haas 2026-02-05 21:21:47 +01:00
parent 8d9c88d2e2
commit f000fc41b5

View file

@ -9,22 +9,18 @@ on:
env: env:
RAILS_ENV: production RAILS_ENV: production
CONTAINER_IMAGE: ${{ secrets.REGISTRY_IMAGE }}:${{ github.ref_name }}-${{ github.sha }} CONTAINER_IMAGE: ${{ secrets.REGISTRY_IMAGE }}:${{ github.ref_name }}-${{ github.sha }}
DOCKER_HOST: tcp://localhost:2375
jobs: jobs:
build: build:
runs-on: docker runs-on: docker
container: container:
image: node:22 # Optionally install Docker CLI in a step image: node:22 # Optionally install Docker CLI in a step
volumes:
- /var/run/docker.sock:/var/run/docker.sock
steps: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Set Docker host
run: export DOCKER_HOST=tcp://forgejo-runner:2375
- name: Install Docker CLI - name: Install Docker CLI
run: apt-get update && apt-get install -y docker.io run: apt-get update && apt-get install -y docker.io