You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ docker version
Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?
Client:
Cloud integration: v1.0.22
Version: 20.10.13
API version: 1.41
Go version: go1.16.15
Git commit: a224086
Built: Thu Mar 10 14:08:43 2022
OS/Arch: linux/amd64
Context: default
Experimental: true
The text was updated successfully, but these errors were encountered:
Hi,
We have a similar warning for a remote driver with buildkit
- name: Set up Docker Buildxuses: docker/setup-buildx-action@v3id: buildxwith:
driver: remoteendpoint: tcp://buildkit-buildkit-service.buildkit:1234
In the post job cleanup we have a warning:
Post job cleanup.
(...)
exporting build record to /__w/_temp/docker-actions-toolkit-cMSHLL/export
/usr/bin/mkfifo /__w/_temp/docker-actions-toolkit-cMSHLL/buildx-in-kmWhDF.fifo
/usr/bin/mkfifo /__w/_temp/docker-actions-toolkit-cMSHLL/buildx-out-jLcNG1.fifo
docker buildx --builder builder-cc2bbcca-4c19-45d8-b14f-b1455e177a1d dial-stdio
docker run --rm -i -v /home/runner/.docker/buildx/refs:/buildx-refs -v /__w/_temp/docker-actions-toolkit-cMSHLL/export:/out docker.io/dockereng/export-build:latest --ref-state-dir=/buildx-refs --node=builder-cc2bbcca-4c19-45d8-b14f-b1455e177a1d/builder-cc2bbcca-4c19-45d8-b14f-b1455e177a1d0 --ref=k5l9[6](https://github.com/instadeepai/aichor-product/actions/runs/9976293593/job/27568141615#step:20:7)3t3kpdpqa6qkz9ttqo76 --uid=1001 --gid=1001
docker: Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?.
See 'docker run --help'.
Process "docker run" exited with code 125
Warning: Process "docker run" closed with code 125
Can the same fix done for the kubernetes driver be done also for the remote driver?
Troubleshooting
Same as buildx action issue docker/setup-buildx-action#135
Behaviour
Steps to reproduce this issue
$ docker buildx create --append --driver=kubernetes --platform linux/amd64 --driver-opt 'namespace=mynamespace,requests.cpu=1,requests.memory=1Gi,limits.cpu=1,limits.memory=2Gi,nodeselector=kubernetes.io/arch=amd64,rootless=true'
Expected behaviour
build-push-action
should build a docker image using the kubernetes driver.Actual behaviour
Action fails during the
Docker info
step, as it callsdocker version
anddocker info
, both of which expect a running Docker daemon.https://github.com/docker/setup-buildx-action/blob/20111c644724909db5e5afbf25d7de40ddf74f0b/src/main.ts#L13-L16
Configuration
Logs
Example of Docker info step:
The text was updated successfully, but these errors were encountered: