I am trying to use a Gitea installation to build an docker image from my project, which is currently limited to a runs-on: docker worker. I assume that this requires a Docker-in-docker image, but then it needs to connect to the host Docker service and that apparently does not work.
Currently I am trying to run docker info with
on: [push]
jobs:
build:
runs-on: docker
container:
image: docker:dind
steps:
- run: docker info
and that complains that the .sock file is not accessible.
honestly … i just created act-runner docker image(from the base one) which included, docker-in-docker installation and coz it is alpine based, really easy to achieve: