diff --git a/Jenkinsfile b/Jenkinsfile index 86498598..6de5da29 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -4,6 +4,7 @@ pipeline { agent any environment { PROJECT_NAME = 'hedera-web' + STACK_NAME = "${env.PROJECT_NAME}-${env.BRANCH_NAME}" } stages { stage('Checkout') { @@ -73,7 +74,7 @@ pipeline { DOCKER_HOST = "${env.SWARM_HOST}" } steps { - dockerStackDeploy() + sh "docker stack deploy --with-registry-auth --compose-file docker-compose.yml ${env.STACK_NAME}" } } }