kind: pipeline
name: default
steps:
- name: test
image: ubuntu:16.04
ipc: host <<< this container is starting with “private” namespace
volumes:- name: dockersock
path: /var/run
commands: - sleep 5 # give docker enough time to start
- name: dockersock
services:
- name: docker
image: docker:dind
privileged: true
ipc: host <<< this container is also starting with “private” namespace
volumes:- name: dockersock
path: /var/run
- name: dockersock
volumes:
- name: dockersock
temp: {}
Also drone is respecting any ipc related option.