From f682253f1dcde9cf304a2c7b37ccbdc7b803013e Mon Sep 17 00:00:00 2001 From: Dmitriy Kopylenko Date: Tue, 24 Dec 2019 07:58:37 -0500 Subject: [PATCH] SHIBUI-1702 --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 93dc5bdab..c79aaa9cd 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -38,7 +38,7 @@ pipeline { steps { sh ''' docker stop shibui || true && docker rm shibui || true - docker run -d --restart always --name shibui -p 8080:8080 -v /etc/shibui:/conf -v /etc/shibui/application.yml:/application.yml -m 4GB --memory-swap=4GB unicon/shibui:latest /usr/bin/java -Xmx3G -jar app.jar + docker run -d --restart always --name shibui -p 8080:8080 -v /etc/shibui:/conf -v /etc/shibui/application.yml:/application.yml -m 2GB --memory-swap=4GB unicon/shibui:latest /usr/bin/java -Xmx1G -jar app.jar ''' } }