Browse Source

Обновить 'Jenkinsfile'

Vladimir Tomishinets 6 years ago
parent
commit
0805fef093
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Jenkinsfile

+ 1 - 1
Jenkinsfile

@@ -96,7 +96,7 @@ pipeline {
         sh '''export DOCKER_CERT_PATH=/run/secrets/swarm
               export DOCKER_HOST=tcp://${CLUSTER_NAME}:2376 DOCKER_TLS_VERIFY=1
               export DOCKER_HOST=tcp://$(docker info -f '{{.Name}}'):2376 DOCKER_TLS_VERIFY=1
-              if [ !$(docker service ps -q ${DOCKER_IMAGE}) ];then
+              if [ -z $(docker service ps -q ${DOCKER_IMAGE}) ];then
                 docker service create --replicas 1 \
                 --mount type=bind,source=/var/run/docker.sock,destination=/var/run/docker.sock \
                 --name ${SERVICE_NAME} ${DOCKER_REGISTRY}/${SERVICE_IMAGE}:1 -p 1194:1194 \