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,14 +46,14 @@ podTemplate(
value: "" value: ""
) )
], ],
)
],
volumes: [ volumes: [
configMapVolume( configMapVolume(
mountPath: "/etc/docker", mountPath: "/etc/docker",
configMapName: "dind-insecure-registries" configMapName: "dind-insecure-registries"
) )
] ]
)
]
) { ) {
node(POD_LABEL) { node(POD_LABEL) {
container("docker") { container("docker") {
@ -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
""" """
} }
} }