Vadim Surkov 7 tahun lalu
induk
melakukan
3f940c4cb2
2 mengubah file dengan 5 tambahan dan 13 penghapusan
  1. 1 0
      Dockerfile
  2. 4 13
      Jenkinsfile

+ 1 - 0
Dockerfile

@@ -3,6 +3,7 @@ ENTRYPOINT ["docker-entrypoint.sh"]
 COPY docker-entrypoint.sh /usr/share/web-registry-portal/bin/docker-entrypoint.sh
 ENV PATH=/usr/share/web-registry-portal/bin:$PATH LANG="en_US.UTF-8" ADMIN_HOST=admin
 EXPOSE 9000 2551
+HEALTHCHECK --start-period=30s --interval=15s --timeout=5s --retries=2 CMD curl -f -H 'Host:demo.infoclinica.ru' 127.0.0.1:9000/login || exit 1
 CMD ["web-registry-portal", "-Dpidfile.path=/var/run/web-registry-portal/play.pid", "-Dconfig.file=/etc/web-registry-portal/application.conf", "-Dlogger.file=/etc/web-registry-portal/application-logger.xml"]
 ARG repo=prod
 RUN set -x \           

+ 4 - 13
Jenkinsfile

@@ -8,11 +8,6 @@ pipeline {
     docker_image='node'
   }
   parameters {
-    string(
-      name: "build",
-      defaultValue: "true",
-      description: "To build image set built to 'true'. To not build, set parameter to anything else - 'false'."
-    )
     string(
       name: "repo",
       defaultValue: "prod",
@@ -20,24 +15,19 @@ pipeline {
     )
     string(
       name: "service_update",
-      defaultValue: "",
-      description: "Services to update - i.e. info_node or/and info_node-api. Lave empty to not update services."
+      defaultValue: "info_node info_node-api",
+      description: "Services to update - i.e. info_node or/and info_node-api."
     )
   }
   stages {
     stage("Build") {
-      when { expression { build == "true" } }
       steps {
-        echo "Building with repo $repo"
         sh "echo docker build --build-arg repo=${repo} --no-cache -t ${docker_registry}/${docker_image}:${repo}-${BUILD_NUMBER} ."
-        sh "false"
       }
     }
     stage("Publish") {
-      when { expression { build == "true" } }
       steps {
-        echo "Building with repo $repo"
-        sh "sleep 10; echo docker build --build-arg repo=${repo} --no-cache -t ${docker_registry}/${docker_image}:${repo}-${BUILD_NUMBER} ."
+        sh "echo docker push ${docker_registry}/${docker_image}:${repo}-${BUILD_NUMBER}"
       }
     }
     stage("Update") {
@@ -47,6 +37,7 @@ pipeline {
         script {
           for (String item : service_update.split()) {
             echo "Updating $item"
+            sh 'false'
           }
         }
         sh 'ls'