From 78e37d9950e26d01e752f26e7ca894ab49ee5a65 Mon Sep 17 00:00:00 2001 From: Ivan Mashonskii Date: Mon, 13 Mar 2023 10:00:34 +0300 Subject: [PATCH] NODE-2564 Fix stopping docker node by SIGINT (#3816) Co-authored-by: Ivan Mashonskii --- docker/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/entrypoint.sh b/docker/entrypoint.sh index 91ba7a8114b..1fd46715e46 100755 --- a/docker/entrypoint.sh +++ b/docker/entrypoint.sh @@ -26,4 +26,4 @@ if [ $# -eq 0 ] ARGS=$@ fi -java $JAVA_OPTS -cp "${WAVES_INSTALL_PATH}/lib/plugins/*:$WAVES_INSTALL_PATH/lib/*" com.wavesplatform.Application $ARGS +exec java $JAVA_OPTS -cp "${WAVES_INSTALL_PATH}/lib/plugins/*:$WAVES_INSTALL_PATH/lib/*" com.wavesplatform.Application $ARGS