fix?
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Cadey Ratio 2020-01-23 21:25:02 +00:00
parent 57409deb9c
commit b23fbb2957
2 changed files with 5 additions and 3 deletions

View File

@ -7,7 +7,7 @@ steps:
name: "build image xena/kubermemes"
volumes:
- name: dockersock
path: /var/run
path: /var/run/docker.sock
type: docker
volumes:
- host:

View File

@ -1,8 +1,10 @@
let drone = ../types.dhall
let path = "/var/run/docker.sock"
in { pipeline = drone.Volume::{
, name = "dockersock"
, host = Some drone.HostVolume::{ path = "/var/run/docker.sock" }
, host = Some drone.HostVolume::{ path = path }
}
, step = drone.StepVolume::{ name = "dockersock", path = "/var/run" }
, step = drone.StepVolume::{ name = "dockersock", path = path }
}