Browse Source

Test mounting /var/run/docker.sock to avoid docker in docker issues

master
Nicolas Petton 3 years ago
parent
commit
4654fb2609
No known key found for this signature in database GPG Key ID: E8BCD7866AFCF978
1 changed files with 8 additions and 0 deletions
  1. +8
    -0
      .drone.yml

+ 8
- 0
.drone.yml View File

@ -8,8 +8,16 @@ platform:
steps:
- name: test
image: ubuntu:latest
volumes:
- name: docker-sock
path: /var/run/docker.sock
commands:
- apt-get update
- apt-get install -y coreutils make gnutls-bin emacs-nox npm
- make dependencies
- make test
volumes:
- name: docker-sock
host:
path: /var/run/docker.sock

Loading…
Cancel
Save