This commit is contained in:
Hyatt 2019-10-24 14:44:15 -05:00
parent edc51ad576
commit 1e5453a6e0
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -44,10 +44,6 @@ podTemplate(
envVar( envVar(
key: "DOCKER_TLS_CERTDIR", key: "DOCKER_TLS_CERTDIR",
value: "" value: ""
),
envVar(
key: "DOCKER_TLS_VERIFY",
value: "0"
) )
] ]
) )
@ -70,7 +66,7 @@ podTemplate(
} }
stage("Push Container"){ stage("Push Container"){
sh """ sh """
docker push registry.test-chamber-13.lan:5000/minecraft:latest DOCKER_TLS_VERIFY=0 docker push registry.test-chamber-13.lan:5000/minecraft:latest
""" """
} }
} }