volumes???

This commit is contained in:
Hyatt 2019-10-24 15:04:28 -05:00
parent 1a5625d0c8
commit 5c7e267255
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -46,12 +46,12 @@ podTemplate(
value: "" value: ""
) )
], ],
volumes: [ )
configMapVolume( ],
mountPath: "/etc/docker", volumes: [
configMapName: "dind-insecure-registries" configMapVolume(
) mountPath: "/etc/docker",
] configMapName: "dind-insecure-registries"
) )
] ]
) { ) {
@ -72,7 +72,7 @@ podTemplate(
} }
stage("Push Container"){ stage("Push Container"){
sh """ sh """
DOCKER_TLS_VERIFY=0 docker push registry.test-chamber-13.lan:5000/minecraft:latest docker push registry.test-chamber-13.lan:5000/minecraft:latest
""" """
} }
} }