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.