It does not print anything until timeout
The step is copied from https://docs.drone.io/pipeline/docker/syntax/steps/
kind: pipeline
name: test-docker
clone:
disable: true
steps:
- name: build
image: docker
# privileged: true # even using privileged mode does not work
commands:
- docker build .
volumes:
- name: docker
path: /var/run/docker.sock
volumes:
- name: docker
host:
path: /var/run/docker.sock
Does it have any way to solve this except using docker-in-docker method?