fix?
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
57409deb9c
commit
b23fbb2957
|
@ -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:
|
||||
|
|
|
@ -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 }
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue