fix deployToSwarm

master
Niclas Thobaben 2022-02-15 00:31:01 +01:00
parent c8117d0237
commit b2a0359a43
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ def askForApproval(String channel, String serviceName) {
def runDeployment(Map config) {
def stackFile = config.file != null ? config.file : '../docker-compose.yml'
def environmentVars = config.env != null ? config.env : []
def environmentVars = config.env != null ? config.env : [ service_name: config.name ]
withCredentials([string(credentialsId: 'ansible_vault', variable: 'vaultPass')]) {
checkout([
$class: 'GitSCM',