From 50e05090077865dad24bfd6dfc3c256e1a69e260 Mon Sep 17 00:00:00 2001 From: ChristopherHX Date: Thu, 9 Oct 2025 07:16:56 +0000 Subject: [PATCH] Do not implicitly mount /var/run/docker.sock (#751) * podman creates an folder * dind sees a folder and fails Was adding the mount a mistake?, a feature with side effects? Closes https://gitea.com/gitea/act_runner/issues/750 Reviewed-on: https://gitea.com/gitea/act_runner/pulls/751 Reviewed-by: Jason Song Co-authored-by: ChristopherHX Co-committed-by: ChristopherHX --- Dockerfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 209ce7d..e8861c7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -59,8 +59,6 @@ RUN apk add --no-cache tini bash git tzdata COPY --from=builder /opt/src/act_runner/act_runner /usr/local/bin/act_runner COPY scripts/run.sh /usr/local/bin/run.sh -VOLUME /var/run/docker.sock - VOLUME /data ENTRYPOINT ["/sbin/tini","--","run.sh"]